Answers

Question and Answer:

  Home  C Pointers

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

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.

 191 views

More Questions for you: