Electrical and Computer Engineering
4 of 17
UAH
CPE 112
struct Example
•enum GradeType (A, B, C, D, F);
•struct StudentRec
•{
•    string    firstName;
•    string    lastName;
•    float     gpa;
•    int       programGrade;
•    int       quizGrade;
•    int       finalExam;
•    GradeType courseGrade;
•};
•
•StudentRec firstStudent;
•StudentRec student;
•int grade;