Question: Write a complete C or C++ program to implement a digital music archive program. The program should be able to allow the following operations through
Write a complete C or C++ program to implement a digital music archive program. The program should be able to allow the following operations through the menu structure. Use FILE to write the outputs, the song directory: Menu: 1- Add a new song to directory 2- Delete a song from the directory 3- List all songs in the directory 4- Search a song: B - A - Search according to ID Search according to category 5- Update song information 6- Sort according to ID A - In ascending order B - In descending order 7- Sort according to category in alphabetic order 8- Quit struct date { int day, month, year; }; struct car { int ID: char songname[100), singersname[30], category[10]; struct date albumdate; }song_directory[100); Important notes: Write a user defined function for each menu option. Use {Pop, Rock, Jazz, Blues} values for the category
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
