how can you sort char firstName in a function and the names are read in from a text file already and external libraries can be used as well All students names are provided in a text file, which is read into an array of student records
struct student{
char*lastName; /*name of the student*/
char*firstName;
int age; /*age of the student*/
float grade[3];
}