Monday, May 30, 2011

HelloWorld in C++


HelloWorld.cpp

#include <iostream>

using namespace std;

int main() {
cout << "HelloWorld" << endl;
return 0;
}

No comments:

Post a Comment

Please make suggestions :)