diff options
| -rw-r--r-- | README.md | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -1,17 +1,17 @@ -# Hello World C++ Program +# Hello World in C++ -A simple Hello World program written in C++. +A simple "Hello World" program written in C++. ## Description -This is a basic C++ program that demonstrates the minimal structure needed to create a working C++ application. The program prints "Hello World" to the console and exits. +This is a basic C++ program that demonstrates the minimal code needed to output text to the console. It serves as a starting point for learning C++ programming. ## Requirements -- C++ compiler (g++, clang++, or any C++ compiler that supports C++11 or later) +- C++ compiler (g++, clang++, or any C++11 compatible compiler) ## Compilation To compile the program, use one of the following commands: -### Using g++: +### Using g++ |
