Assume that a structure SREC has already been defined. Define a new type, ROSTER, that is a structure consisting of an int field, size, and another field, grades, that is an SREC array with 500 elements.
.
.
Click on the title for the solution
.
.
.
Click on the title for the solution
.
.
This is the answer:
:
struct ROSTER
{
int size;
SREC grades[500];
};
Comments
Post a Comment