C++编程语言
1. Hello world
vi hello_world.cpp
#include <iostream>
using namespace std;
int main()
{
cout << "Hello, World!" << endl;
return 0;
}
# sudo yum install gcc-c++
g++ hello_world.cpp -o hello_world
./hello_world
# Out: Hello, World!