Question: This is C. I really need help with the MakeItemBlank() function as i cannot seem to figure out how to create it, Create three files

This is C. I really need help with the MakeItemBlank() function as i cannot seem to figure out how to create it,

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: $13 

Below is my code for each program

MAIN

#include #include #include "ItemToPurchase.h"

int main(void) { int i; const int NUM_ITEMS=2; char c; int total; ItemToPurchase item1; ItemToPurchase item2; for (i-0;i

ITEMTOPURCHASE.H

#ifndef ITEM_TO_PURCHASE_H #define ITEM_TO_PURCHASE_H

typedef struct ItemToPurchase_struct{ char itemName[50]; int itemPrice; int itemQuantity; } ItemToPurchase; void MakeItemBlank(ItemToPurchase* item); void PrintItemCost(ItemToPurchase item)

#endif

ITEMTOPURCHASE.C

#include #include #include "ItemToPurchase.h"

void makeItemBlank(ItemToPurchase* item),{ strcpy((*item).itemName, "None"); (*item),itemPrice=0; (*item)itemQuantity=0; }

void printItemCost(ItemToPurchase item),{ printf("%s %d @ $%d = $%d ", item.itemName, item.itemQuantity, item.itemPrice,(item.itemPrice * it

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!