Question
A function call for a void function named calcEndingInventory() is passed four int variables named beginInventory , sales , purchases , and endingInventory . The
A function call for a void function named calcEndingInventory() is passed four int variables named beginInventory, sales, purchases, and endingInventory. The functions task is to calculate the ending inventory, using the beginning inventory, sales, and purchase amounts passed to the function. The function should store the result in the endingInventoryvariable. Which of the following function headers is correct?
a. | void calcEndingInventory (int& b, int& s, int& p, int& e); | |
b. | void calcEndingInventory (int b, int s, int p, int& e) | |
c. | void calcEndingInventory (int b, int s, int p, int& e); | |
d. | void calcEndingInventory (int b, int s, int p, int e) |
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