The objective for today's short lab is to investigate the difference bewteen pass-by-value and pass-by-reference.
First, look at the "Vend()" function that receives the product
number, returns the cost
of a product, and needs to decrement the numChips, numCookies ,...
Make the product amounts pass-by-reference.
Next, look at the function that accepts coins.
The function should pass the number of quarters, dimes, nickels as "reference"
What other functions need pass-by-reference? Perhaps the calculate change function? Are there others?