Skip to content

Latest commit

ย 

History

History
28 lines (18 loc) ยท 1.06 KB

File metadata and controls

28 lines (18 loc) ยท 1.06 KB

C++ Daily Practice & Notes

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.


๐Ÿ“š How to Use This Repo as Notes

  • 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.

๐Ÿ› ๏ธ How to Compile and Run

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