Question: C++ Given the function prototype and variable declarations, which of the following is a valid function call void compute (int, float, char&, int& ); //
C++
Given the function prototype and variable declarations, which of the following is a valid function call
void compute (int, float, char&, int& ); // Function prototype
int x, y; float p, q; char r, s; // variable declarations
WHY is "compute (5, p + q, r, y);" a valid function call?
I need explanation
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
