Computer scienceProgramming languagesC++Getting started with C++

Writing the first C++ program

Keywords

Report a typo

Here is our first program:

#include <iostream>

// This is a single comment about our main function. 
// Our function prints text to the console.
int main() {
    std::cout << "Hello, World" << std::endl; 
    
    return 0;
}

Choose which words you think are reserved (keywords):

Select one or more options from the list
___

Create a free account to access the full topic