安装
打开终端输入:
yum -y install gcc gcc-c++ autoconf pcre pcre-devel make automake
yum -y install wget httpd-tools vim
测试
-
查看gcc版本信息
gcc --version -
编写Helloworld
创建名为ctest.c文件
touch ctest.c
编辑该文件
vim ctest.c
#include <stdio.h>
int main()
{
printf("hello world!\n"); return 0;
}
编译ctest.c文件
gcc ctest.c
可以看到生成了a.out文件
执行a.out
./a.out
2020.10.8