/* CS270 - R6 * * Author: Your name here * Date: 2/12/2020 */ /********** STRUCTURE DEFINITION **********************************************/ // Structure that represents a student typedef struct { // TODO: Add required members } Student; // Structure that represents a class roster // TODO: Declare this structure /********** FUNCTION PROTOTYPES ***********************************************/ void readStudentAndEnroll(Student **slot); void displayStudent(Student s);