[Solved] C Programming Maintaining Inventory Store Type Store Ideas Bookstore Music Store Pet Stor Q37270266
(C programming) You are maintaining aninventory for a store. What type of store is up to you. Some ideas:bookstore, music store, pet store, etc… You need a system thatwill let you enter your inventory (and store it in a file). Youalso should be able to sort it, and update it. For the items inyour inventory, you will be keeping track of its basic information(i.e. for books: name, publisher, year, author, pages, price). Yoursystem will allow you to keep track of who purchases the items fromyour store (name, address, telephone, what they bought, how muchthey paid). This information is also to be stored in a file(separate from the inventory file). Your program should open with amenu that allows me to see your inventor. I should also be able toadd inventory or delete inventory.. Your program should let me thenenter a customer’s data and what they bought to remove it frominventory. You do not need to save the customer data to a file.
Your program should be fault tolerant, allowing for possibleuser error. Your program should also be as user friendly as you canmake it. Your program should consist of more than 1 .c file. Forexample, you could group your inventory functions into one .c file,and then main program in another c file.
Your information should be read from files at the start of yourprogram and stored into lists (arrays or linked lists – yourchoice). When the program ends, you write that data back out. Whilethe program is running, you should of course write out any changesmade to data; that way, if the program crashes you will not havelost all the changes made before the crash. Of course, if you makeyour program fault tolerant, crashes won’t occur that often. 🙂
Expert Answer
Answer to (C programming) You are maintaining an inventory for a store. What type of store is up to you. Some ideas: bookstore, mu… . . .
OR

