用命令行新建C文件
touch hello.c
编辑C文件
vim hello.c
编写C程序代码
#include <stdio.h>
int main()
{
printf("Hello World!");
return 0;
}
编译C程序文件
cc -c hello.c
生成可执行文件
cc hello.o
执行文件
./a.out
touch hello.c
vim hello.c
#include <stdio.h>
int main()
{
printf("Hello World!");
return 0;
}
cc -c hello.c
cc hello.o
./a.out
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。