From 59a3274d82e55f5060307b5e6ae2d7cdd1cd0494 Mon Sep 17 00:00:00 2001 From: kuldipv3 Date: Sun, 7 Oct 2018 17:06:06 +0530 Subject: [PATCH] hello world in c++ --- hello.cpp | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 hello.cpp diff --git a/hello.cpp b/hello.cpp new file mode 100644 index 0000000..f7390ed --- /dev/null +++ b/hello.cpp @@ -0,0 +1,5 @@ +#include +int main(){ +cout<<"hello world"; +return 0; +}