Answered step by step
Verified Expert Solution
Question
1 Approved Answer
C++ coding with output SS please Part B (to be turned in) Next write a different program that lets you work with the data concerning
C++ coding with output SS please
Part B (to be turned in) Next write a different program that lets you work with the data concerning each tool, enables you to list all your tools, lets you delete a record for a tool that you no longer have and lets you update any information in the file. The tool identification number should be the record number. Use the following information for your program to work with. Record : Tool name Quantity Cost 3 17 24 39 56 68 77 83 Electric sander Hammer Jigsaw Lawn mower Power saw Screwdriver Sledge hammer Wrench 7 76 21 3 18 106 11 34 57-98 11.99 11.00 79.50 99.99 6.99 21.50 7.50 Use one word tool name when working with tool name. If a space is detected in the input, scanf will ignore the remaining input. Instead of Electric sander, use Electric sander, Electric-sander, or Electric Sander. if you really want to capture multi word tool name, then you have to use "gets" function to capture the entire input and the parse out the name, quantity and cost on your own. When you run the program the first time, no tool record will be available. You have to use option 3, 8 times to enter the above 8 records into the data file. For the purpose of this assignment, we will work only with two tool Sample input/output required to turn in. (the items in red are just headings. Not part of the program output. Please use similar headings in your output submission.) Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started