输入vim 1.c 编辑c文件
will@will-Inspiron-N4010:~/ex/c/1$ vim 1.c
按i 进入插入模式,输入一下字符
#include <stdio.h>
int main(void)
{
printf("hello \n");
}
输入完成后,Shift + ; 得到命令行,输入wq!,保存强制退出 。
运行gcc 1.c -o 1
will@will-Inspiron-N4010:~/ex/c/1$ gcc 1.c -o 1
生成可执行文件,运行./1 , 即可运行完整程序得到hello