From 54adfc5881a6a0a8b2f5deada315b5487befa170 Mon Sep 17 00:00:00 2001 From: tez-580 <92677016+tez-580@users.noreply.github.com> Date: Sun, 17 Oct 2021 19:19:03 +0530 Subject: [PATCH] Create hello_world.cpp --- Hello_World/hello_world.cpp | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Hello_World/hello_world.cpp diff --git a/Hello_World/hello_world.cpp b/Hello_World/hello_world.cpp new file mode 100644 index 0000000..e5fc95b --- /dev/null +++ b/Hello_World/hello_world.cpp @@ -0,0 +1,11 @@ +#include + +using namespace std; + +int main() +{ + + cout<<"Hello World"; + + return 0; +}