From fdfde4ac53ffaaa89913ca833e29437dadd8c147 Mon Sep 17 00:00:00 2001 From: Ambuj Date: Mon, 16 Oct 2017 22:33:25 +0530 Subject: [PATCH] helloworld.c --- hello_world/helloworld.c | 10 ++++++++++ 1 file changed, 10 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 000000000..9a22a63e5 --- /dev/null +++ b/hello_world/helloworld.c @@ -0,0 +1,10 @@ +// Include the contents of stdio.h, a library with standard input and output functions such as printf(). +#include +#include +// Execution of the program begins with the main() function. +void main() +{ + // printf() displays the string inside quotation + printf("Hello, World!"); + getch(); +}