From febd1223755ceea9907483904ecbcd9f6fbc4523 Mon Sep 17 00:00:00 2001 From: ASHISH LAKSHKAR <33260264+ashishh8055@users.noreply.github.com> Date: Mon, 1 Oct 2018 16:34:35 +0530 Subject: [PATCH] Create helloworld.c --- hello-world/helloworld.c | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 hello-world/helloworld.c diff --git a/hello-world/helloworld.c b/hello-world/helloworld.c new file mode 100644 index 00000000..3b7617c2 --- /dev/null +++ b/hello-world/helloworld.c @@ -0,0 +1,6 @@ +#include +int main() +{ + printf("Hello, World!"); + return 0; +}