Point out the error in the following code:-


			  		

Loading

Choose the correct option.

Point out the error in the following code:-

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. NULL
D. None of above

Leave a Comment