Warning: implode(): Invalid arguments passed in /www/wwwroot/jobquiz.info/mdiscuss.php on line 336 Point out the error in the program f(int a, int b) { int a; a = 20; return a; } ?->(Show Answer!)
1. Point out the error in the program f(int a, int b) { int a; a = 20; return a; }
Ask Your Doubts Here
Comments
By: guest on 01 Jun 2017 06.01 pm
f(int a, int b) The variable a is declared in the function argument statement. int a; Here again we are declaring the variable a. Hence it shows the error "Redeclaration of a"