Explain what is the purpose of "extern" keyword in a function declaration?

Submitted by: Administrator
The declaration of functions defaults to external linkage. The only other storage class possible for a function is static, which must be specified explicitly. It cannot be applied to a block scope function declaration and results in internal linkage.
Submitted by: Administrator

Read Online C Pointers Job Interview Questions And Answers