Systems & hardware

C++

An extension of the C programming language, C++ offers object-oriented features and is used for system/software applications, game development, and high-performance applications.

Share this starting point code.study/cpp
Created by
Bjarne Stroustrup
First appeared
1985
Official resource
Visit the main website

Your first program

Hello, World!

C++
#include <iostream>

int main() {
    std::cout << "Hello, World!" << std::endl;
    return 0;
}