This repository contains a collection of basic to intermediate C++ programs written during my early journey learning the C++ programming language at university.
Each file reflects exercises, assignments, and mini-projects completed as part of our C++ programming module.
The repository is organized by individual .cpp
source files and their compiled .exe
binaries (for Windows).
File Name | Description |
---|---|
classe.cpp |
Class management example |
hello.cpp |
Basic "Hello World" example |
exo.cpp |
Simple exercise template |
note.cpp |
Student grading and evaluation logic |
facture.cpp |
Simple invoice/facturation system |
rank.cpp |
Ranking logic based on user inputs |
salle.cpp |
Classroom/student-related input/output handling |
scolarite.cpp |
School fees or student records handling |
transaction.cpp |
Transaction system (basic logic simulation) |
eleve.cpp |
Student data management |
✅ Note: Most
.exe
files are included for quick execution on Windows. You can recompile the.cpp
files using any C++ compiler (g++, clang, etc.).
If you want to compile and run any file locally:
g++ filename.cpp -o filename
./filename
For example:
g++ note.cpp -o note
./note
I believe in learning by doing. These exercises helped me understand:
- Variables and data types
- Control structures (if, loops, switch)
- Functions and modularity
- File input/output (in some exercises)
- Real-world logic simulation with C++
Prince Ekpinse Junior Web Developer – React & Next.js
- Portfolio: prince0xdev.vercel.app
- GitHub: github.com/prince0xdev
- Medium: medium.com/@prince0xdev
This project is open-source and free to explore. You may use, modify, and learn from the code. Just give credit when appropriate ✨