在linux中写一个c程序
1、新建文件
touch hello.c
2、编写文件
进入编写窗口
vi hello.c
或者 vim hello.c
输入 i 进入编辑模式
#include<stdio.h>
int main()
{
printf("hello,world!\n");
return 0;
}
按esc键退出编辑模式
输入 :wq 保存并退出(之后可输入 cat hello.c
查看文件内容)
3、编译文件
gcc hello.c
编译生成 a.out 文件
(或者使用gcc hello.c -o hello
将编译后的文件重命名为hello)
4.运行文件
./a.out
运行程序
p.s.之前出现gcc找不到的情况,在查找了许多资料以后,我选择了最简单粗暴的方法——直接重装系统。我之前安装的linux系统只有最基本的功能,在重新安装的时候选择安装了开发工具,问题解决。