Question: Please answer in C language with comments explaining what the function does. The data is formatted as follows for all students: The given data structure
Please answer in C language with comments explaining what the function does.
The data is formatted as follows for all students:

The given data structure is shown here:

Please complete the following function:

Please use the built in function strcpy and strlen but no other built in functions
Thank you!
Johnson, Trevor; Sanchez, kieley; Williams, Richard; 658753; M; 904592; F; 866271; M; 3.799475821 2.830103354 2.078074428 typedef struct structStudentType { char name[ STD_STR_LEN ); int studentID; char gender; double gpa; } StudentType; Na me : comp ar eStudents Process: compares two students using na me strings of each as keys Function input/para meters: students one and two (const Student Type) Function output returned: value returned as specified below (int) value right student value = zero if left student = right student 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 strlen Dependencies: strcpy, int compare Students ( const Student Type student One, const Student Type student Two)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
