For this workshop we'll creat a simple student database REPL with ability to save, delete and load text files. We'll be using the Visual Studio IDE for support for those of you that may not be very experienced with C++ just yet.
g++ students.cpp -o students
./students
Compiling and Running in Windows
- Add error checking!
- What happens if a name has a comma?
- Multi-worded names break
std::cin
- Split the student class to a separate header and class file