Jul 5, 2009

Hello World! in C++

/* author ANISHMOHAN*/

#include "iostream"
using namespace std;
void main() {
cout << "Hello World!";
}