🟦 C++ Introduction

C++ is a powerful, high-performance, object-oriented programming language widely used in system/software development, games, and applications that demand speed and control over hardware resources.

📥 Installing a C++ Compiler

To run C++ programs, you need a compiler:

🖼️ Setup Screens

Visual Studio Installer g++ version terminal output

📝 Your First C++ Program

Output will appear here...
💡 Tip: Save your C++ files with a .cpp extension. Compile them with g++ filename.cpp -o program and run with ./program.