MCQOPTIONS
Saved Bookmarks
| 1. |
Is there any difference between following declarations? extern int fun(); int fun(); |
| A. | Both are identical |
| B. | No difference, except extern int fun(); is probably in another file |
| C. | int fun(); is overrided with extern int fun(); |
| D. | None of these |
| Answer» C. int fun(); is overrided with extern int fun(); | |