1.

Point out the error in the program f(int a, int b) { int a; a = 20; return a; }

A. Missing parenthesis in return statement
B. The function should be defined as int f(int a, int b)
C. Redeclaration of a
D. None of above
Answer» D. None of above


Discussion

No Comment Found

Related MCQs