Q:
What is the difference between the following declarations?
extern int fun();
int fun();
Answer
There is no difference except for the fact that the first one gives a hint that the function fun() is probably in another source file.
View answer
Workspace
Report Error
Discuss