Consider the following function definition:
int func(int x, double y, char u, string name)
{
//function body
}
Which of the following are correct function prototypes of the function func?
a. int func(x, y, u, name);
b. int func(int s, double k, char ch, string name);
c. int func(int, double, char, string);
d. func(int, double, char, string)
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.