Printing Hello World In C++

 



#include<iostream>

using namespace std;

void main()

{

  cout<<"Hello World";

getch();

}

Comments

Post a Comment

Popular posts from this blog

Calculate Factorial of a given no with help of Recursion

Get a string Using gets() function

Use of conditional Operators