[Solved]Function Prototype Lines Code Correct Call Statement Void Function Int P Int R String S In Q37291115
Here is a function prototype and a few lines of code. What isthe correct call statement?
void Function(int *p, int &r, string s);
int a, b;
string s;
<now call the function>
Function(&a, &b, s);
Function(a, b, s);
Function(&a, b, s);
Function(a, &b, s);
Expert Answer
Answer to Here is a function prototype and a few lines of code. What is the correct call statement? void Function(int *p, int &r, … . . .
OR

