156) What error would the following function give on compilation ?
f(int a,int b)
{
int a;
a = 20;
return a;
}
Answer is:
Redeclaration of a
Related C Programming MCQ with Answers
Answer is:
Returns a non-integer value
Answer is: