/* Hello Friends , This is our 1st Program in C++ Programming Language */
#include<iostream> // a simple header file ,used in each and every program
using namespace std;
int main () // main body of the program , where compiler starts compiling
{
cout << " Hello World " << endl ; // endl - a function used for next ( new ) line
cout << "This is Techie::balaji " <<"\n" ; // "\n" is equivalent to endl
cout << " Done " ;
return 0 ;
} // a simple program in C++ coding