This is the first C++ program which simply prints Hello World on output screen.As you know that  in C++ the object cin and cout are used instead of scanf() and printf() function in C.
C++ hello world program
#include<iostream.h>
#include<conio.h>
 void main()
   {
       cout<<"\n Hello World ";
       getch();
   }
Output
Hello World
