From c564b0f8427555af1e89f1e8c817c3a33170a190 Mon Sep 17 00:00:00 2001 From: quinlanhoo Date: Sun, 29 Jun 2025 01:01:28 +0800 Subject: [PATCH] 1. Add a simple C program that prints "Hello, World!" to the console. --- C/hello_world/hello_world.c | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 C/hello_world/hello_world.c diff --git a/C/hello_world/hello_world.c b/C/hello_world/hello_world.c new file mode 100644 index 0000000..8321e25 --- /dev/null +++ b/C/hello_world/hello_world.c @@ -0,0 +1,6 @@ +#include + +int main() { + printf("Hello, World!\n"); + return 0; +} \ No newline at end of file