Do you know what is the purpose of "extern" keyword in a function declaration?

Submitted by: Administrator
The keyword ‘extern' indicates the actual storage of the variable is visible , or body of a function is defined elsewhere, commonly in a separate source code. This extends the scope of the variables or functions to be used across the file scope.

Example:
extern int number;
Submitted by: Administrator

Read Online C Functions Job Interview Questions And Answers