Ubuntu 下编写C程序

Ubuntu 下编写C程序

  • 一、编写C程序
  • 二、编译C程序
  • 三、make工具和Makefile文件

一、编写C程序

使用VIM编辑器编写程序,也可以使用vscode。

1.1、设置vim编辑器
设置vim编辑器,一个TAB=4个字节。
Ubuntu 下编写C程序_第1张图片

设置vim编译器,显示行号。
在这里插入图片描述

Ubuntu 下编写C程序_第2张图片

sudo vi /etc/vim/vimrc
进入,按下a进入编辑模式
在这里插入图片描述

输入
set ts=4
set nu
保存退出

1.2、编写C程序
Ubuntu 下编写C程序_第3张图片

二、编译C程序

使用gcc编译器编译C程序。

Ubuntu 下编写C程序_第4张图片
Ubuntu 下编写C程序_第5张图片
Ubuntu 下编写C程序_第6张图片
gcc编译是可以检查错误的

Ubuntu 下编写C程序_第7张图片
Ubuntu 下编写C程序_第8张图片

Ubuntu 下编写C程序_第9张图片
Ubuntu 下编写C程序_第10张图片

三、make工具和Makefile文件

make:一般说GNU Make,是一个软件,用于将源代码文件编译为可执行的二进制文件,make工具主要用于完成自动化编译。make工具编译的时候需要Makefile文件提供编译文件。
Makefile:make工具所使用的文件,Makefile指明了编译规则。

你可能感兴趣的:(Linux系统,ubuntu,vim,vscode)