From 6dfbc4c3c4f5aed8ddac4362f0665a06e7bd18c0 Mon Sep 17 00:00:00 2001 From: shubham-pahuja Date: Thu, 3 Oct 2019 08:55:43 +0000 Subject: [PATCH] Create hello.cpp Hello in c++ --- cpp/hello.cpp | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 cpp/hello.cpp diff --git a/cpp/hello.cpp b/cpp/hello.cpp new file mode 100644 index 0000000..861cdc4 --- /dev/null +++ b/cpp/hello.cpp @@ -0,0 +1,7 @@ +#include +using namespace std; +int main() +{ + cout<<"Hello World\n"; + return 0; +}