Dynamically create an array of Student structures as declared below to store the student data from the file. There are 10 students and each student has five grades.
What do these instructions mean. Do I have to make 10 different structures like the one below or is it asking me to do something else. Can somebody please explain this to me?
Yes, that's exactly right. studentInfo[1] will give you the second student in the array, the .grades will give you the grades array for that student, and then the [3] will give you the 4th grade in that array.
Of course, somewhere between those two lines, you'll have to put the values into the Student objects, but I'm sure you've worked that out already!