Shashank S dda700b843 Update c++.cpp
The standard way a C++ compiler greets us with a Hello World
2016-05-21 13:34:21 +05:30

10 lines
106 B
C++

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