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

Check whether the no entered is Palindrome or not

Calculate Factorial of a given no with help of Recursion

Find max. and min. element in the integer array