From 90dacbbdc3a9153e9baa6f8cf00808c629ad2c09 Mon Sep 17 00:00:00 2001 From: latenightz Date: Thu, 29 Apr 2021 15:19:22 +0000 Subject: [PATCH] Add 'hello.c' --- hello.c | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 hello.c diff --git a/hello.c b/hello.c new file mode 100644 index 0000000..cc22a52 --- /dev/null +++ b/hello.c @@ -0,0 +1,7 @@ +// Hello world in C + +#include + +int main() { + printf("Hello, World!\n"); +} \ No newline at end of file