C++ is a mid-level, general-purpose and object-oriented programming language with both low and high-level programming capabilities. It is an extended version of the C language with the additional concept of 'classes'. C++ is compatible with a number of platforms like Unix, Windows, MAC OS and others. It is one of the most widely used commercial programming languages and is considered by many as one of the best languages to create large-scale applications.
Even though there is no rule of thumb as to what one should already know before starting to learn C++, some consider an understanding of the C programming language a prerequisite for learning C++.
C++ is an object-oriented programming language while C is just a basic programming language. So, you can learn the programming concepts in the C language in a relatively easier way. C++ is a more complex language and is the superset of C. Thus, an understanding of the C language facilitates a quick and easy learning of C++.
Hello World Program in C++
#include <iostream>
using namespace std;
int main()
{
cout << "Hello, World!";
return 0;
}
According to the TIOBE Index for January 2018 C++ is the 3rd most popular programming language after Java and C language respectively on 1st and 2nd. There is so much going on C++ language. VR is reviving C and C++ development because as we all know VR (Virtual Reality) games are very computationally intensive. So if anyone want to go into the VR world, C and C++ might be a very good choice, mostly with the Unreal Engine to be able to learn how to do that, which has become popular in the VR stuff, Oculus Rift and many others.
Tutorials