Could someone exactly explain the concept of extern variables in C? The declaration, exact use of extern and its scope.
|
9
|
|
|||
|
|
Extern is the keyword you use to declare that the variable itself resides in another translation unit. So you can decide to use a variable in a translation unit and then access it from another one, then in the second one you declare it as extern and the symbol will be resolved by the linker. If you don't declare it as extern you'll get 2 variables named the same but not related at all, and an error of multiple definitions of the variable. |
||||
|
|
|
A Say you have to Complete sample:
|
||||||
|
|
|
Adding an |
||
|
|
|
extern tells the compiler to trust you that the memory for this variable is declared elsewhere, so it doesnt try to allocate/check memory. Therefore, you can compile a file that has reference to an extern, but you can not link if that memory is not declared somewhere. Useful for global variables and libraries, but dangerous because the linker does not type check. |
||
|
|
|
Using It is important to understand the difference between defining a variable and declaring a variable:
You may declare a variable multiple times (though once is sufficient); you may only define it once within a given scope. Best way to declare and define global variablesThere are other ways of doing it, but the clean, reliable way to handle that is to use a header file file3.h
file1.c
file2.c
That's the best way to use them. GuidelinesRules to be broken by experts only, and only with good reason:
Not so good way to define global variablesWith some (indeed, many) C compilers, you can get away with what's called a 'common' definition of a variable too. 'Common', here, refers to a technique used in Fortran for sharing variables between source files, using a (possibly named) COMMON block. What happens here is that each of a number of files provides a tentative definition of the variable. As long as no more than one file provides an initialized definition, then the various files end up sharing a common single definition of the variable: file10.c
file11.c
file 12.c
Because this technique is not always supported (the C standard says it is a common variation on its one definition rule), it is best to avoid this, especially if your code needs to be portable. Using this technique, you can also end up with unintentional type punning. If one of the files declared This is mentioned in the C standard in informative Annex J as a common extension:
WarningAs noted in comments here, and as stated in my answer to a similar question, using multiple definitions for a global variable leads to undefined behaviour, which is the standard's way of saying "anything could happen". One of the things that can happen is that the program behaves as you expect; and J.5.11 says, approximately, "you might be lucky more often than you deserve". But a program that relies on multiple definitions of an extern variable - with or without the explicit 'extern' keyword - is not a strictly conforming program and not guaranteed to work everywhere. Equivalently: it contains a bug which may or may not show itself. Violating the guidelinesNote 1: if the header defines the variable without the faulty_header.h
Then each file that includes the header creates a tentative definition of the variable. Note 2: if the header defines and initializes the variable, then only one source file in a given program can use the header: broken_header.h
Note 3: if the header defines a static variable (with or without initialization), then each source file ends up with its own private version of the 'global' variable. seldom_correct.h
When the variable is actually a complex array, this can lead to extreme duplication of code. It can, very occasionally, be a sensible way to achieve some effect, but that is rather unusual. Use the header technique I showed first. It works reliably and everywhere. Note, in particular, that the header declaring the Similar concerns arise with declaring and defining functions - analogous rules apply. But the question was about variables specifically, so I've kept the answer to variables only. |
||||||||||
|
|
|
I like to think of an extern variable as a promise that you make to the compiler. When encountering an extern, the compiler can only find out its type, not where it "lives", so it can't resolve the reference. You are telling it, "Trust me. At link time this reference will be resolvable." |
||
|
|

externissues as clearly as this question warrants. Another related Q - but not a duplicate (and I don't think you were proposing it as a duplicate). – Jonathan Leffler Sep 17 at 18:11