From a69a68c0b9a514424fe37428c7689176fbd6c74c Mon Sep 17 00:00:00 2001 From: Aylin Cakal Date: Mon, 14 Aug 2017 16:28:08 +0300 Subject: [PATCH] Update c++.cpp for just the comments for the beginners --- c/c++.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/c/c++.cpp b/c/c++.cpp index 701b1f39..7b3b10b6 100644 --- a/c/c++.cpp +++ b/c/c++.cpp @@ -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 }