Author: jiuhao47
// helloworld.c #include <stdio.h> // 头文件 int main() { printf("Hello, World!\n"); return 0; }
# 编译 gcc -c helloworld.c gcc helloworld.o -o helloworld # 运行 ./helloworld