From f8a79ee0048885e30b71ef7058755cc0905f2fa5 Mon Sep 17 00:00:00 2001 From: SCARLLET-hub Date: Sat, 28 Oct 2023 18:46:09 +0530 Subject: [PATCH] Commit --- C/hello-world.c | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 C/hello-world.c diff --git a/C/hello-world.c b/C/hello-world.c new file mode 100644 index 0000000..c754e24 --- /dev/null +++ b/C/hello-world.c @@ -0,0 +1,5 @@ +#include +int main(void) { + printf("Hello World!"); + return 0; +}