第一章
1创建源文件
vim hellow-world.c
2写代码 #include <stdio.h> int main() { printf(“hellow, world\n”); }2编译
gcc hellow-world.c
4运行
./a.out