Question: Write a C program that manages song albums, where users could create an album, delete an album, search for an album, modify an album, export/import
Write a C program that manages song albums, where users could create an album, delete an album, search for an album, modify an album, export/import album data into files. The album has name, singer name, production year, production company, and contains songs. A song is described by a name, a duration of the song in minutes, and a genre. You can create a playlist to contain songs from different albums, and you can navigate the playlist forward and backwards.
- Use Dynamic Link List to process albums, songs, and playlist information.
- Use modular programming
-Use one DLL type definition to handle both albums and songs info; rather than defining two separate DLL types
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
