969 views
0 votes
0 votes
Is there any difference between following declarations?

1: extern int fun();

2: 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

-------------------------------------

i think both are same as compiler converts int func() to extern int func() implictly

1 Answer

Related questions

0 votes
0 votes
0 answers
1
Harish Kumar 2 asked Dec 5, 2017
525 views
Is there any difference between the orders we get by applying masters theorem vs Substitution method?I know the conditions where master's theorem can be applied and subst...
0 votes
0 votes
2 answers
2
0 votes
0 votes
0 answers
3