Question: Write a program that uses a structure to accept Items. Loop the program so that it allows the user to keep putting Items in until
Write a program that uses a structure to accept Items. Loop the program so that it allows the user to keep putting Items in until they are ready to quit.
Structure example:
struct Item
{
char Item [50];
char Color [10];
char Size [5];
float Price;
};
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
