Google News
logo
C-Language - Interview Questions
What is the purpose of extern storage specifier?
Used to resolve the scope of global symbol.
 
Example :  
main() {
   extern int i;
   Printf(“%d”,i);
}

int i = 20;
Advertisement