From e54eec7ab0412969bce1a864b2c2510b46c1c48f Mon Sep 17 00:00:00 2001 From: DulajMadushanka Date: Tue, 31 Oct 2017 04:04:06 +0530 Subject: [PATCH] Add helloworld --- helloworld.c | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 helloworld.c diff --git a/helloworld.c b/helloworld.c new file mode 100644 index 0000000..6ec388a --- /dev/null +++ b/helloworld.c @@ -0,0 +1,7 @@ +#include +int main() +{ + // printf() displays the string inside quotation + printf("Hello, World!"); + return 0; +} \ No newline at end of file