From 4ed16e5911fe0b31587e8ab6f1abc2b74fbf097e Mon Sep 17 00:00:00 2001 From: Nischay Wadhwa Date: Thu, 26 Sep 2019 12:40:44 -0400 Subject: [PATCH] add helloworld c program --- helloworld.c | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 helloworld.c diff --git a/helloworld.c b/helloworld.c new file mode 100644 index 0000000..e45ebc9 --- /dev/null +++ b/helloworld.c @@ -0,0 +1,5 @@ +#include +void main() +{ +printf("hello world"); +}