// derived_data_types_ex4.h /* Purpose: header file that declares a derived data type... */ struct Student { int no; char grades[6]; }; // Notice semi-colon after closing brace for // a declared derived data type... const int SIZE = 6; void sort(struct Student* murph); void display(struct Student murph);