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
- is a better C.
- supports data abstraction.
- supports object-oriented programming.
- 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 Joshi [ Linkedin Profile ]
For Videos Join Our Youtube Channel: Join Now