Answer:
(C) calcNewPrice(oldPrice, &newPrice);
Step-by-step explanation:
It's a void function so there's no return value, however they wanted to change a value. The only way to do that is to pass in an address of the variable into the function, and deference it and store the new data there.