In the following code, determine which function, if any, matches the call to compute. List the candidate and viable functions. What type conversions, if any, are applied to the argument to match the parameter in each viable function?
namespace primerLib { void compute(); void compute(const void *);}using primerLib::compute;void compute(int);void compute(double, double = 3.4);void compute(char*, char* = 0);void f(){ compute(0);}What would happen if the using declaration were located in main before the call to compute? Answer the same questions as before.
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.