

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