一. 安装编译器
linux下执行查看是否安装GNU编译器GCC
$ g++ -v
没有安装的话运行下面两个命令安装
yum -y install gcc gcc-c++ autoconf pcre pcre-devel make automake
yum -y install wget httpd-tools vim
二. 编写并执行代码
#include <iostream>using namespace std;
int main(){
cout << "Hello, world!" << endl;
return 0;
}
$ g++ helloworld.cpp -o helloworld
$ ./helloworld