Write C++ code to do the following: Set up a record/structure to store products. Each product has a name, a model number and a price. Choose appropriate types for these fields.
You program should contain a loop which allows entry via the keyboard of up to 10 products to be stored in an array. The loop can be stopped by entry of “quit” for the product name.
Your program should include a function to then display all the product’s details after the entry loop has finished.
– Rework your
solut…
