What is extern class?

What is extern class? The extern storage class specifier lets you declare objects that several source files can use. An extern declaration makes the described variable usable by the succeeding part of the current source file. Using the extern specifier with type declarations is illegal. An extern declaration cannot appear Read more…