Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

C | Functions | Question 8

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

What is the meaning of using extern before function declaration?

For example following function sum is made extern

extern int sum(int x, int y, int z)
{
    return (x + y + z);
}

(A) Function is made globally available
(B) extern means nothing, sum() is same without extern keyword.
(C) Function need not to be declared before its use
(D) Function is made local to the file.


Answer: (B)

Explanation: extern keyword is used for global variables. Functions are global anyways, so adding extern doesn’t add anything.

Quiz of this Question

My Personal Notes arrow_drop_up
Last Updated : 28 Jun, 2021
Like Article
Save Article
Similar Reads