From 4d3f68dbffd29870cb4d55c11bc2706d6376b50f Mon Sep 17 00:00:00 2001 From: Vimal Kishore <47075408+vkishore97@users.noreply.github.com> Date: Thu, 24 Oct 2019 19:38:31 +0530 Subject: [PATCH] Create helloworld.c --- helloworld.c | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 helloworld.c diff --git a/helloworld.c b/helloworld.c new file mode 100644 index 0000000..ff455af --- /dev/null +++ b/helloworld.c @@ -0,0 +1,4 @@ +#include +void main() { +printf("Hello World"); +}