 |
 |
 |
 |
 |
 |
 |
 |
 |
• |
Valid
assignment statements given the declaration of
|
|
|
gradeBook
|
|
|
gradeBook[55].gpa = 4.0;
|
|
|
gradeBook[103].stuName = “Harold
Schmerdlap”;
|
|
|
gradeBook[149].examScore[0] = 83;
|
|
|
gradebook[0].GradeType = B;
|
|
|
for (count = 0; count < MAX_STUDENTS; count++)
|
|
cout <<
gradeBook[count].stuName << endl;
|
|