You need to wrote a program to keep inventory for a hardware store You will write a program to store the inventory on the hard drive in a random access file. Make the file big enough to store 100 records. Each record will contain:
Record # (int), Tool Name (char [20]), Quanity (int) and cost (double)
Your program should initialize the file to 100 empty records.
Then create a menu that allows you to Update a record, Delete a record, List a record, and list All tools (the ones that are not empty)
Remember you will have to use strcpy_s(destination, orig) to copy a character array
Start your inventory with the following information
Record# Name Quantity Cost
3 Electric Sander 7 57.00
17 Hammer 76 11.99
24 Jig Saw 21 11.00
39 Lawn mower 3 79.50
56 Power saw 18 99.99
68 Screwdriver 106 6.99
77 Sledge hammer 11 21.50
83 Wrench 34 7.50