Hello World


#include <stdafx.h>  /* Includes header files here. */
#include <iostream>

using namespace std; /* Tells the compiler to use the namespace std. */

int main() /* Execution starts from main(). */
{  
  cout<< "Hello World..!!"/* Displays the string Hello World. */  
  return 0;  /* Terminates main( )function and causes it to return the value 0 to the calling process.*/
}

Output:
Hello World..!!