From 7a70161a72b14624067ad5c3c85488e2f0402d0b Mon Sep 17 00:00:00 2001 From: ishanisamanta <59821990+ishanisamanta@users.noreply.github.com> Date: Thu, 1 Oct 2020 14:35:49 +0530 Subject: [PATCH] Create Hello world Your first program --- Hello world | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 Hello world diff --git a/Hello world b/Hello world new file mode 100644 index 0000000..dcfb86b --- /dev/null +++ b/Hello world @@ -0,0 +1,5 @@ +#include +int main() { + printf("Hello, World!"); + return 0; +}