码迷,mamicode.com
首页 > 系统相关 > 详细

在Ubuntu上安装gcc

时间:2020-07-29 15:07:04      阅读:61      评论:0      收藏:0      [点我收藏+]

标签: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

在Ubuntu上安装gcc

标签:build   -o   apt   文件   进制   sse   成功   main   ret   

原文地址:https://www.cnblogs.com/biem/p/13396686.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!