Write a C++ program that will allow a user to manage the inventory of a store (you may sell anything you want).The inventory for a small electronics store for example will contain the following information for each item in the inventory:
1. SKU (stock-keeping unit, an integer, could be ANY integer)
2. quantity (how many of this item in stock)
3. price (in dollars and cents)
4. make+model (i.e. "Samsung 32GB version 3", may contain spaces in it)
Your store should contain similar fields.
Your program should offer the user a menu with the following options:
1. Add a new item to the inventory (prompt user for input values)
2. Remove an item from the inventory (by sku)
3. Display the information for an item (given the sku)
4. Display the inventory sorted by sku
5. Quit
Your program
• Should read the inventory from file when it loads
• Should save the inventory to file after performing menu items 1 or 2 above
• Should be error free
Please write the program in Dev C++ and put it in zip file at the end.