From b40558c2b8f82c7c870264cce8edb448a8945d54 Mon Sep 17 00:00:00 2001 From: arjunr50 <43809027+arjunr50@users.noreply.github.com> Date: Tue, 20 Oct 2020 01:50:03 +0530 Subject: [PATCH] Create hello.c Added hello world program in c --- hello.c | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 hello.c diff --git a/hello.c b/hello.c new file mode 100644 index 0000000..34d86c4 --- /dev/null +++ b/hello.c @@ -0,0 +1,6 @@ +#include +int main() { + // printf() displays the string inside quotation + printf("Hello, World!"); + return 0; +}