
extern keyword in C is used when we have multiple source file and we want to shear the variable among those files.Or when we prefixing a global variable with the extern keyword in C that's mean we are telling to the compiler that the variable is already defined in other file.That's means don't...