•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;