Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

C/C++

C/C++ 是一种系统编程语言,能编写在几乎任何平台上运行的程序。它是一种功能强大的编程语言,常用于开发底层程序,如操作系统、驱动程序和游戏。同时,它也是学习编程的优秀选择。

#include <iostream>
using namespace std;
int main() {
    cout << "Hello, World!" << endl;
    return 0;
}