Aylin Cakal a69a68c0b9 Update c++.cpp
for just the comments for the beginners
2017-08-14 16:28:08 +03:00

10 lines
158 B
C++

#include <iostream>
using namespace std;
int main()
{
cout << "Hello World" << endl; //print Hello Word on the screen
return 0; // for convention
}