Question
Write a C program that does the following: 1. (2 points) Declare a structure called Undergraduate with the following members: Name (string), ID (long int),
Write a C program that does the following: 1. (2 points) Declare a structure called Undergraduate with the following members: Name (string), ID (long int), GPA (float) and Age (int). 2. (3 points) Ask the user to enter the information of 10 undergraduates and save them in an array called UNDERGRADUATES. 3. (3 points) Print the name of the Undergraduate(s) that has(have) an age greater than 22. 4. (5 points) Write a function called MaxGPA that takes the array UNDERGRADUATES as an argument and returns the Undergraduate that has maximum GPA. 5. (2 points) In the main, call the function MaxGPA and print the information of the Undergraduate with maximum GPA.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started