Question: Given this function declaration: int my_func(int a, int b); Which of the following function calls would not generate a syntax error? int q=7; cout <
Given this function declaration:
int my_func(int a, int b); Which of the following function calls would not generate a syntax error?
int q=7; cout << my_func(q,19,14);
cout << my_func("42",19);
cout << my_func(4, 5.2);
cout << my_func(3);
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
