Q. What is the problem in the following C declarations?
Code:
int func(int); double func(int); int func(float);
β
Correct Answer: (D)
All of the mentioned
int func(int); double func(int); int func(float);
You must be Logged in to update hint/solution