Question: struct Student { string name; int age; double GPA; }; Student studentList[MAX_STUDENTS]; Given the following write a statement that prints the last student's GPA.
struct Student {
string name;
int age;
double GPA;
};
Student studentList[MAX_STUDENTS];
Given the following write a statement that prints the last student's GPA.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
