C++编程语言

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!

发表评论

您的邮箱地址不会被公开。 必填项已用 * 标注

滚动至顶部