Skip to content

A simple CLI-based student management system. I just made it to review C++ and to practice modern ways by following the C++ Core Guidelines. Feel free to use my code if you come across this repository by chance.

License

zEuS0390/cpp-simple-cli-student-mgmt-sys

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

54 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Simple CLI-based Student Management System

I just made it to review C++ and to practice modern ways by following the C++ Core Guidelines. Feel free to use my code if you come across this repository by chance. Use the latest GCC or any compiler to make an executable file. If you want to build differently, you can use CMake and select the generator that you want. I also used Cppcheck static analysis tool to help me avoid dangerous coding constructs and bugs.

g++ -O3 -Wall -I include/ src/main.cpp src/person.cpp src/student.cpp src/class.cpp -o ./main.exe
cppcheck --enable=all --suppress=missingIncludeSystem -I include/ src/main.cpp src/person.cpp src/student.cpp src/class.cpp

About

A simple CLI-based student management system. I just made it to review C++ and to practice modern ways by following the C++ Core Guidelines. Feel free to use my code if you come across this repository by chance.

Topics

Resources

License

Stars

Watchers

Forks