Computer scienceProgramming languagesC++Getting started with C++

Writing the first C++ program

Elements of a program

Report a typo

Given a simple program.

#include <iostream>

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

Select all correct declarations about elements of this program.

Select one or more options from the list
___

Create a free account to access the full topic