Wednesday 4 February 2015

C++ hello world example

C++ hello world example

#include<iostream>
 
using namespace std;
 
int main()
{
 cout << "Hello World\n";
 return 0;
}

No comments:

Post a Comment