The Design of C++

C++ has no built-in high-level data type and no high-level primitive operations.


For example, the C++ language does not provide a matrix type with an invention operator or a string type with a concatenation operator.


What is C++?

C++ is a general-purpose programming language with a bias towards systems programming that 

  1.     is a better C.
  2.     supports data abstraction.
  3.     supports object-oriented programming.
  4.     supports generic programming.


First program in C++ :

 #include<iostream>  
 using namespace std;  
 int main()  
 {  
  cout<<"Hello World"<<endl;  
  return 0;  
 }  
 -----o/p-----  
 Hello World  

About Program :

   - Preprocessor directive

include - Include the following library

Main()  - Entry Point


AUTHOR : Rakshit JoshiLinkedin Profile ]

For Videos Join Our Youtube Channel: Join Now