From 164108aa1b74dcd72e4c7714a9554b6351be483c Mon Sep 17 00:00:00 2001 From: BBaoVanC Date: Tue, 20 Oct 2020 10:48:35 -0500 Subject: [PATCH] Add hello-world.c --- hello-world.c | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 hello-world.c diff --git a/hello-world.c b/hello-world.c new file mode 100644 index 0000000..644e896 --- /dev/null +++ b/hello-world.c @@ -0,0 +1,7 @@ +#include + +int main() { + printf("Hello World!\n"); + printf("Hello again, World!\n"); + return 0; +} \ No newline at end of file