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

Linux 基础与应用教程 005(GCC实验)

时间:2018-04-13 11:32:25      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:info   alt   bsp   应用   clu   mod   基础   stdio.h   分享图片   

GCC实验
1、安装GCC编译器yum install -y gcc
2、vi hello.c
用vi写“hello world!”的C语言代码vi hello.c
#include "stdio.h"
int main()
{
printf("hello world!\n");
}
3、用GCC将该文件编译为可执行文件hello.run
gcc hello.c -o hello.run
chmod +x hello.run
4、运行hello.run,./hello.run。

技术分享图片

 

Linux 基础与应用教程 005(GCC实验)

标签:info   alt   bsp   应用   clu   mod   基础   stdio.h   分享图片   

原文地址:https://www.cnblogs.com/mawenqi-barry/p/8818323.html

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