MCQOPTIONS
Saved Bookmarks
| 1. |
What error will the following function give on compilation?fun(int x, int y ){ int x ; y = 54 ; return x ;} |
| A. | Missing parentheses in return statement |
| B. | The function should be defined as int fun(int x, int y ) |
| C. | Re declaration of x |
| D. | None of the above |
| Answer» D. None of the above | |