标签:build -o apt 文件 进制 sse 成功 main ret
更新包索引
apt update
安装开发工具包
apt install build-essential
查看gcc是否安装成功
gcc --version
编写hello world
vim hello.c
#include <stdio.h>
int main()
{
printf("Hello, world!\n");
return 0;
}
编译为二进制文件
gcc hello.c -o hello
运行程序
./hello
参考博客:https://www.cnblogs.com/livelab/p/13049117.html
标签:build -o apt 文件 进制 sse 成功 main ret
原文地址:https://www.cnblogs.com/biem/p/13396686.html