Sunday 15 September 2013

Hello World in C++

#include<iostream>
using namespace std;

void main()
{
 cout<<"hello world\n";
 system("pause");
}

0 comments:

Post a Comment