Linux 基础与应用教程 005(GCC实验)
Posted mawenqi
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux 基础与应用教程 005(GCC实验)相关的知识,希望对你有一定的参考价值。
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实验)的主要内容,如果未能解决你的问题,请参考以下文章
GlobalMapper精品教程005:影像拼接与裁剪案例教程