Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Please Solve in C programming ---------------------------------------------------------- VendingMachine.h Provided typedef struct VendingMachine_struct { int bottles; } VendingMachine; VendingMachine InitVendingMachine(); VendingMachine Purchase(int amount, VendingMachine vm); VendingMachine Restock(int

image text in transcribedPlease Solve in C programming

----------------------------------------------------------

VendingMachine.h Provided

typedef struct VendingMachine_struct { int bottles; } VendingMachine;

VendingMachine InitVendingMachine(); VendingMachine Purchase(int amount, VendingMachine vm); VendingMachine Restock(int amount, VendingMachine vm); int GetInventory(VendingMachine vm); void Report(VendingMachine vm);

---------------------------------------------------------------

VendingMachine.c Provided

#include

#include "VendingMachine.h"

VendingMachine InitVendingMachine(){ VendingMachine newVM; newVM.bottles = 20; return newVM; }

VendingMachine Purchase(int amount, VendingMachine vm){ vm.bottles = vm.bottles - amount; return vm; }

VendingMachine Restock(int amount, VendingMachine vm){ vm.bottles = vm.bottles + amount; return vm; }

int GetInventory(VendingMachine vm){ return vm.bottles; }

void Report(VendingMachine vm){ printf("Inventory: %d bottles ", vm.bottles); }

Given two integers as user inputs that represent the number of drinks to buy and the number of bottles to restock, create a VendingMachine variable that performs the following operations: - Purchases input number of drinks - Restocks input number of bottles - Reports inventory VendingMachine.h contains the struct definition and related function declarations. VendingMachine.c contains related function definitions. A VendingMachine's initial inventory is 20 drinks. Ex: If the input is: 52 the output is: Inventory: 17 bottles Current file: main.c - Load default template... 123456789#includestdio.h#include"vendingmachine.h"intmain(){FTypeyourcodehere.*//*return

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Students also viewed these Databases questions

Question

How do you add two harmonic motions having different frequencies?

Answered: 1 week ago

Question

What is the relationship between humans?

Answered: 1 week ago

Question

What is the orientation toward time?

Answered: 1 week ago