Create a structure STUDENT containing character array firstName[30], character array lastName[30], integer SID, integer array with 4 scores. Then create a function that inputs one student record. Create another function to determine if a student has averaged score higher than 90. In main, call these function to input an array of students, check and display the students who have averaged score higher than 90.0
Use C language, not C++
Sample output:
How many students:2
Student#1:
Enter first name: Mary
Enter last name: Kenny
Enter SID: 1211
Enter scores: 100 90 100 90
Student#2
Enter first name: john
Enter last name: smith
Enter SID: 1000
Enter scores: 60 50 70 80
Student list averaged score higher than 90.0
Mary Kenny 1211