Question: Write a C program that does the following: 1. (2 points) Declare a structure called Album with the following members: Title (string), Artist (string). Number_tracks
Write a C program that does the following: 1. (2 points) Declare a structure called Album with the following members: Title (string), Artist (string). Number_tracks (int) and Year (int). 2. (3 points) Ask the user to enter the information of 10 albums and save them in an array called ALBUMS. 3. (3 points) Print the title of the album(s) that released before 2000. 4. (5 points) Write a function called MaxTracks that takes the array ALBUMS as an argument and returns the album that has maximum number of tracks. 5. (2 points) In the main, call the function Max Tracks and print the information of the album with max number of tracks
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
