summaryrefslogtreecommitdiff
path: root/README.md
blob: 20fd119b4b4e2dca0f62de0a9546cd60a7cc2ca9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Hello World C++ Program

A simple C++ program that prints "Hello World" to the console.

## Description

This is a basic C++ program demonstrating the minimal structure needed for a working C++ application. It uses the iostream library to output text to the standard output stream.

## Requirements

- C++ compiler (g++, clang++, or MSVC)
- C++11 or later (though this simple program will work with older standards)

## Compilation

### Using g++