• It is an object-oriented programming language that can be used to create high-performance applications.
  • In 1985 C++ was developed by Bjarne Stroustrup as an extension of c program language.
  • It gives a programmer’s high level of control over system memory and resources.
  • This programming language is one of the world’s most popular language.
  • Nowadays it can be found in embedded systems, operating systems and Graphical User Interfaces.

  • C++ gives a clear structure to programs and allows code to be reused, lowering development costs because it is an Object-Oriented Programming language.
  • C++ is close to Java and C#, it makes easy for programmers to switch vice versa or C++.
  • It is used to develop browsers, games, operating systems and so on.

Sample Code

#include <iostream>
using namespace std;

int main()
{
cout << "Welcome to Wikitechy";
return 0;
}

Output

Categorized in: