Merge pull request #425 from aylincakal/patch-1

Update c++.cpp
This commit is contained in:
Mike Donaghy
2017-10-02 03:55:27 -05:00
committed by GitHub

View File

@@ -4,6 +4,6 @@ using namespace std;
int main()
{
cout << "Hello World" << endl;
return 0;
cout << "Hello World" << endl; //print Hello Word on the screen
return 0; // for convention
}