Given the function prototype, what is wrong with the following function call?
void test (int, int&); // function prototype
test (a, &b); // function call
The function call should not have the &
Computer Science & Information Technology