I need help to solve this program. I have done quite a few parts of it but I don't know how to complete it
Use the following sub-menu for Book Database options: Study Smart Book Store Inventory Database 1. Search Book 2. Add Book 3. Edit Book 4. Delete Book 5. Return to the Main Menu Enter Your Choice: The shop owner required you to include a simple book database module (Figure 2.0) in the existing system so that all the transactions can be carried out efficiently. In order to group all the book details efficiently, you are required to use the struct data type to model the book entity. You may use the following information in your book record: struct Book { string title; string ISBN; string author; string publisher; int quantity; double wholesaleCost; double retailCost; //could be other elements e.g. publishing date };