This is an assignment due tomorrow. Unfortunately I work a job with rigorous hours and have little time to study.
Paying 50 FG for this assignment if its correct, I have more work.
1. Write a program using structures that would store the information like you see
in the picture below. The value doesn’t need to be the same as shown below.
The program should use some loop statements to either input or output those
values. Your program should display the value on the screen (20 points)
Hint: You can use the syntax to define a structure template PartItem. The code shows
only two members initially (Fig 1).
You have to add another data member as shown in
the Fig 2 and then create an array of the structure variable and store the information
inside the members.
PartItem is a structure template made up of two members. Part is the variable of type
struct PartItem.
struct PartItem
{
char Number[10];
float Price;
};
struct PartItem Part;
