From 0854e5b483c6d34297d12e920d2aa7373ae74f3c Mon Sep 17 00:00:00 2001 From: sgoudham Date: Sun, 11 Jul 2021 19:29:00 +0100 Subject: [PATCH] Add Hello World! --- hello.c | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 hello.c diff --git a/hello.c b/hello.c new file mode 100644 index 0000000..5d45caf --- /dev/null +++ b/hello.c @@ -0,0 +1,13 @@ +#include +void println(char *printString); + +int main() +{ + println("This is a test"); + return 0; +} + +void println(char *printString) +{ + printf("%s\n", printString); +}