Update c++.cpp

The standard way a C++ compiler greets us with a Hello World
This commit is contained in:
Shashank S
2016-05-21 13:34:21 +05:30
parent 9f63e88962
commit dda700b843

View File

@@ -1,8 +1,9 @@
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
std::cout << "Hello World" << std::endl;
return EXIT_SUCCESS;
cout << "Hello World" << endl;
return 0;
}