A collection of clean, readable, and well-structured C++ code snippets written during my daily learning journey. This repository serves as both a personal tracker and a practical code-based reference for other students learning C++.
Instead of complex documentation, the code itself is written to be self-explanatory, well-commented, and easy to follow.
- Read the Code: Every file focuses on a specific concept, keeping syntax simple and readable.
- Check the Comments: Important logic, edge cases, and syntax rules are explained directly within the code.
- Run it Locally: You can clone any file to test, modify, and experiment with the concepts.
To run any of these files on your own machine using a terminal and g++:
# Clone this repository
git clone [https://github.com/Sahil002620Q/dev-tools.git](https://github.com/Sahil002620Q/dev-tools.git)
# Compile the specific file
g++ filename.cpp -o program
# Run the compiled program
./program