Welcome to the C++ Tutorials repository! This collection comprises various C++ programs created as part of my learning journey. It serves as a personal archive and a reference for beginners aiming to understand the fundamentals of C++ programming.
cpp-tutorials/
├── .vscode/
├── file1.txt
├── file2.txt
├── file3.txt
├── tut1.cpp
├── tut1.exe
├── tut2.cpp
├── tut2.exe
├── ...
├── tut26.cpp
├── tut26.exe
Note: Executable files (.exe) are included for corresponding .cpp files.
- C++: Core programming language
- GCC / MinGW / MSVC: Compilers for building C++ programs
- VS Code / Code::Blocks / Dev-C++: IDEs for development
To compile and run the C++ programs:
- Clone the repository:
git clone https://github.com/Reet-Kamlay/cpp-tutorials.git
- Navigate to the project directory:
cd cpp-tutorials - Compile a C++ program:
g++ tut1.cpp -o tut1
- Run the executable:
./tut1
Note: Replace tut1 with the actual name of the C++ file you wish to compile and run.
- Basic syntax and structure of C++ programs
- Control flow statements (
if,else,switch, loops) - Functions and recursion
- Object-oriented programming concepts
- File handling
- Standard Template Library (STL) basics
Contributions are welcome! If you have suggestions or improvements, feel free to fork the repository and submit a pull request.
This project is licensed under the MIT License. See the LICENSE file for details.
Reet Kamlay
GitHub: @Reet-Kamlay
Happy coding!