From 287610ab66ecbfc9a83a72f47c3d0519886e3983 Mon Sep 17 00:00:00 2001 From: ayush Date: Mon, 8 Oct 2018 01:44:05 +0530 Subject: [PATCH] hello.c --- code/hello.c | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 code/hello.c diff --git a/code/hello.c b/code/hello.c new file mode 100644 index 0000000..dd00e08 --- /dev/null +++ b/code/hello.c @@ -0,0 +1,7 @@ +#include + +int main() +{ + printf("Hello World"); + return 0; +}