Question
Write a C program that does the following: 1. (2 points) Declare a structure called Course with the following members: Name (string), instructorname(string), capacity(int), ID(long
Write a C program that does the following:
1. (2 points) Declare a structure called Course with the following members: Name (string), instructorname(string), capacity(int), ID(long int).
2. (3 points) Ask the user to enter the information of 10 courses and save them in an array called COURSES.
3. (3 points) Print the ID of the course(s) that has (have) name starts with letter C.
4. (5 points) Write a function called AverageCapacity that takes the array COURSES as an argument and returns the average capacity for all courses.
5. (2 points) In the main, call the function AverageCapacity and print the result.
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