Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 616 Bytes

README.md

File metadata and controls

20 lines (14 loc) · 616 Bytes

C++ Workshop

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.

Compiling and Running in Linux/Unix

g++ students.cpp -o students
./students

Compiling and Running in Windows

TODO

  • 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