https://github.com/shahadathhs/cpp-course
This repository is my personal C++ learning notebook, where I practice and take notes while going through different concepts.
https://github.com/shahadathhs/cpp-course
cpp makefile
Last synced: 9 months ago
JSON representation
This repository is my personal C++ learning notebook, where I practice and take notes while going through different concepts.
- Host: GitHub
- URL: https://github.com/shahadathhs/cpp-course
- Owner: shahadathhs
- Created: 2025-09-14T14:05:28.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2025-09-14T14:22:44.000Z (10 months ago)
- Last Synced: 2025-09-14T16:25:53.992Z (10 months ago)
- Topics: cpp, makefile
- Language: C++
- Homepage:
- Size: 1.95 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# C++ Course
This repository is my **personal C++ learning notebook**, where I practice and take notes while going through different concepts.
It contains:
* My own **example programs** for each topic
* **Notes** and explanations as I learn
* A **main entry file** to test and run examples
* A simple **Makefile** to compile and run programs quickly
### **Getting Started**
#### **1. Compile & Run the Main File**
This repo uses a **Makefile** for easy compilation and execution:
```bash
# Compile main.cpp and run it
make
# Or explicitly
make run
```
✅ This will compile `main.cpp` and execute it. Any included example functions will run automatically.
#### **2. Clean Binaries**
Remove compiled binaries with:
```bash
make clean
```
This deletes the `tmp/` folder where compiled binaries are stored.