Skip to content

Latest commit

 

History

History
16 lines (14 loc) · 599 Bytes

README.md

File metadata and controls

16 lines (14 loc) · 599 Bytes

Student Roster Application - C++

Purpose

This project is a simple command line application to process student roster data.
Application reads in structured data from a list of comma delimited entires.
Performs basic operations on roster data:

  • Parse student data into class roster
  • Add/Remove from roster
  • Print list of students by program
  • Print list of invalid emails

Learning Goals Accomplished

  • Write separate .h/.cpp files for custom classes
  • Parse string data using delimiter
  • Work with pointers and object arrays
  • Utilize OOP principles to create students & roster