Change Password

Is there any difference between following declarations?
1 :extern int fun();
2 :int fun();
Both are identical
No difference, except extern int fun(); is probably in another file
int fun(); is overrided with extern int fun();
None of these