int main()
{
extern int i;
i=20;
printf("%d",i);
return 0;
}
The compiler is giving an Error that 'i' is undefined
Whats the Reason?
The compiler is giving an Error that 'i' is undefined Whats the Reason? |
|||||||||
|
|
Difference :
Hence while compiling, the compiler(LDD) will look for the original definition of the variable and if it does'nt find, it'll throw an error 'undefined reference to `i'. |
|||
|
|
|
You must link with a translation unit that includes |
|||
|
|
|
By saying Just drop that |
|||||||||
|
externAllows one module of your program to access a global variable or function declared in another module of your program. You usually have extern variables declared in header files. If you don't want a program to access your variables or functions, you use static which tells the compiler that this variable or function cannot be used outside of this module. errno.h
errno.c
main.c
|
|||
|
|
|
extern keyword is used to tell the compiler that the variable is defined in another file but during linking, the linker does not resolve the variable so you get an error |
|||
|
|