Update c++.cpp

for just the comments for the beginners
This commit is contained in:
Aylin Cakal
2017-08-14 16:28:08 +03:00
committed by GitHub
parent daeb8e7b6e
commit a69a68c0b9

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
}