1. Add a simple C program that prints "Hello, World!" to the console.

This commit is contained in:
quinlanhoo 2025-06-29 01:01:28 +08:00
parent dc12335bac
commit c564b0f842

View File

@ -0,0 +1,6 @@
#include <stdio.h>
int main() {
printf("Hello, World!\n");
return 0;
}