ubuntu怎么使用gcc
时间: 2024-10-25 18:14:04 浏览: 20
Ubuntu系统下GCC入门
在Ubuntu系统中使用GCC编译器,首先需要确认已经安装了基本的开发工具包。你可以通过运行以下命令检查是否已安装GCC:
```sh
sudo apt update
sudo apt install build-essential
```
如果尚未安装,上述命令会安装必要的基础环境。接下来,你可以直接在终端中使用GCC编译器。下面是一个简单的步骤说明:
1. 打开终端:`Ctrl+Alt+T`
2. 创建一个新的源码文件(例如,名为`hello_world.c`)并输入C程序的基本示例:
```c
#include <stdio.h>
int main() {
printf("Hello, World!\n");
return 0;
}
```
3. 使用`gcc`编译你的程序:
```
gcc -o hello_world hello_world.c
```
这里 `-o` 参数指定生成的可执行文件名(这里是`hello_world`)。
4. 要运行你的程序:
```
./hello_world
```
阅读全文