Warning: implode(): Invalid arguments passed in /www/wwwroot/jobquiz.info/mdiscuss.php on line 336 Is there any difference between following declarations? 1 : extern int fun(); 2 : int fun(); ?->(Show Answer!)
1. Is there any difference between following declarations? 1 : extern int fun(); 2 : int fun();
Ask Your Doubts Here
Comments
By: guest on 01 Jun 2017 06.01 pm
extern int fun(); declaration in C is to indicate the existence of a global function and it is defined externally to the current module or in another file. int fun(); declaration in C is to indicate the existence of a function inside the current module or in the same file.