What is the purpose of extern storage specifier in C- Programming?
Used to resolve the scope of global symbol. Eg: main() { extern int i; Printf(“%d”,i); } int i = 20;