Hi,

I'm working on a program to sort students by last name, first name, middle initial, gpa, etc. I've defined a data structure called "Student."



typedef struct
{
char last[21];
...