STRUCTURE
STRUCTURE
Then
a. In main, declare an array of 100 STUDENT structures. Read an integer n and then read in
the details of n students in this array
b. Write a function to search the array for a student by name. Returns the structure for the
student if found. If not found, return a special structure with the name field set to empty
string (just a ‘\0’)
c. Write a function to search the array for a student by roll no.
d. Write a function to print the details of all students with CGPA > x for a given x
e. Call the functions from the main after reading in name/roll no/CGPA to search