I\'m reading \"Think in C++\" and it just introduced the extern declaration. For example:
extern
extern int x; extern float y;
I thi
This is useful when you want to have a global variable. You define the global variables in some source file, and declare them extern in a header file so that any file that includes that header file will then see the same global variable.