From 55616cb4b7cb091e95a41d96b1594c8e79b29bb6 Mon Sep 17 00:00:00 2001 From: chinjura <56077272+chinjura@users.noreply.github.com> Date: Sat, 5 Oct 2019 14:21:29 +0530 Subject: [PATCH] Create helloworldincpp --- helloworldincpp | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 helloworldincpp diff --git a/helloworldincpp b/helloworldincpp new file mode 100644 index 0000000..c0eaf3c --- /dev/null +++ b/helloworldincpp @@ -0,0 +1,6 @@ +#include +using namespace std; +int main(){ +cout<<"\n Hello World"; +return 0; +}