From 4f1b598dd47ca378cfbeed21100dd7b4dfb5b279 Mon Sep 17 00:00:00 2001 From: durgaprasanth Date: Fri, 11 Jun 2021 18:36:26 +0530 Subject: [PATCH] helloworld.c file is added --- helloworld.c | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 helloworld.c diff --git a/helloworld.c b/helloworld.c new file mode 100644 index 0000000..ca9328c --- /dev/null +++ b/helloworld.c @@ -0,0 +1,6 @@ +#include +int main() + { + printf("hello world!"); + return 0; + }