Question
In C code ( UNIX C CODE), please Online shopping cart (C) (1) Create three files to submit: ItemToPurchase.h - Struct definition and related function
In C code ( UNIX C CODE), please
Online shopping cart (C)
(1) Create three files to submit:
ItemToPurchase.h - Struct definition and related function declarations
ItemToPurchase.c - Related function definitions
main.c - main() function
Build the ItemToPurchase struct with the following specifications:
Data members (3 pts)
char itemName [ ]
int itemPrice
int itemQuantity
Related functionsMakeItemBlank() (2 pts)
Has a pointer to an ItemToPurchase parameter.
Sets item's name = "none", item's price = 0, item's quantity = 0
PrintItemCost()
Has an ItemToPurchase parameter.
Ex. of PrintItemCost() output:
Bottled Water 10 @ $1 = $10
(2) In main(), prompt the user for two items and create two objects of the ItemToPurchase struct. Before prompting for the second item, call fflush(stdin); to allow the user to input a new string. (2 pts) Ex:
Item 1 Enter the item name: Chocolate Chips Enter the item price: 3 Enter the item quantity: 1 Item 2 Enter the item name: Bottled Water Enter the item price: 1 Enter the item quantity: 10
(3) Add the costs of the two items together and output the total cost. (2 pts) Ex:
TOTAL COST Chocolate Chips 1 @ $3 = $3 Bottled Water 10 @ $1 = $10 Total: $13Subission 7.6.1: Ch 7 Warm up: Online shopping cart (C) Instructions Deliverables ItemToPurchase.c, ItemTo Purchase.h and main.c We will expect the above file(s) to be submitted Compile command gcc ItemTopurchase.c main. c -Wall- a.out -Inn We will use this command to compile your code Submit your files below by dragging and dropping into the area or choosing a file on your hard drive. tem loPurchase.c ItemToPurchase.h Drag files to left, or choose file.. main.c
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