From dda700b843b68af429676a0cab1aed6bddd5cd79 Mon Sep 17 00:00:00 2001 From: Shashank S Date: Sat, 21 May 2016 13:34:21 +0530 Subject: [PATCH] Update c++.cpp The standard way a C++ compiler greets us with a Hello World --- c/c++.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/c/c++.cpp b/c/c++.cpp index 4b5cb5b6..701b1f39 100644 --- a/c/c++.cpp +++ b/c/c++.cpp @@ -1,8 +1,9 @@ #include -#include + +using namespace std; int main() { - std::cout << "Hello World" << std::endl; - return EXIT_SUCCESS; + cout << "Hello World" << endl; + return 0; }