From 97f3eaf9f999300069825d9aa9a4956edcbdd34a Mon Sep 17 00:00:00 2001 From: sambhav05 <56436294+sambhav05@users.noreply.github.com> Date: Sun, 13 Oct 2019 09:02:18 +0700 Subject: [PATCH] Create hello_world.cpp --- CPP/hello_world.cpp | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 CPP/hello_world.cpp diff --git a/CPP/hello_world.cpp b/CPP/hello_world.cpp new file mode 100644 index 0000000..d79e181 --- /dev/null +++ b/CPP/hello_world.cpp @@ -0,0 +1,6 @@ +#include +using namespace std; +int main() +{ +cout<<"hello world"; +}