A global variable

C++ allows global variables.

C# and Java do not allow global variables.

Generally speaking, it is probably a bad idea to use global variables in your programs.

The C++ program in Listing 1 illustrates the scope of a global variable.