Answer:
struct SREC
{
NAME name;
string grade;
};
Explanation:
The first line declares a new data type, a structure, of name SREC. The open and close braces, are used to contain other data fields or members, namely: name and grade variables.
The NAME has already been defined, hence there is no declaration method in the SREC structure.