C++ is a statically typed, compiled, general-purpose, case-sensitive, free-form programming language that supports procedural, object-oriented, and generic programming.More..
C++ was developed by Danish computer scientist Bjarne Stroustrup at Bell Labs since 1979 as an extension of the C language.
| Bjarne Stroustrup |
Example:
#include<iostream>
using namespace std;
// main function -
int main()
{
// prints hello world
cout<<"Hello World";
return 0;
}