A C++ Student Management System for managing students, courses, enrollments, and admin tasks.
Developed as a DSA course project by Mazen Mahmoud and Andrew Hany.
- Manage students, courses, enrollments, and admins
- Console-based interface
- Uses singly linked lists and basic file I/O
Students.txtCourses.txtEnrollments.txtAdmins.txt
- Open the project folder in VS Code.
- Make sure you have a C++ compiler installed (e.g., GCC or MSVC).
- Open the terminal in VS Code and compile the main file:
g++ main.cpp -o StudentManagement./StudentManagement # on Linux/Mac
StudentManagement.exe # on Windows