[C++ is case sensitive language means if we will use upper case letter at the place of lower letter in the syntax then program will generate the error.] Here is the article related to c++ programming. Firstly we will check the simple Hello World program and then break that program into pieces and then check the every line and its use in the program
#include<iostream>
using namespace std;
int main()
{
cout<<"Hello World"<<endl;
return 0;This is the program which will display the message "Hello World". Now we...