Linux安装GCC编译器
今天突然想到怎么样在Red Hat 8上练习C,安装GCC编译器,并运行出“hello world”。
于是就有了以下操作
1 [root@localhost ~]# yum install gcc
2 [root@localhost ~]# cc -v
3 [root@localhost ~]# mkdir qmh
4 [root@localhost ~]# cd qmh/
5 [root@localhost qmh]# mkdir qmh01
6 [root@localhost qmh]# ls
7 qmh01
8 [root@localhost qmh]# cd qmh01/
9 [root@localhost qmh01]# touch aa.c
10 [root@localhost qmh01]# vi aa.c
11 #include<stdio.h>
12
13 int main(){
14
15 printf("hello world");
16 return 0;
17 }
18 [root@localhost qmh01]# cc aa.c
19 [root@localhost qmh01]# ls
20 aa.c a.out # 看到aa.c表示成功一半le
21 [root@localhost qmh01]# gcc aa.c && ./a.out
22 hello world[root@localhost qmh01]# # hello world出来了