“Hello, World!” in C++
hello-v1.cpp
Download file: Windows | macOS | Unix
1// Program : "Hello, World!" in C++
2// Author : Prof. Krofchok
3// Date : Fall 2025
4// Description: This program displays a greeting to the user.
5
6#include <iostream> // provides std::cout, std::endl
7
8int main()
9{
10 std::cout << "Hello, world!" << std::endl;
11}