Definitions for "Static variable"
a variable with static scope.
A variable whose storage is allocated for the entire execution of a program.
Variables that are allocated from static storage (sometimes referred to as the heap). Static variables have two characteristics of note: They preserve their value for the lifetime of the program. They are initialized when they are allocated. By default, program variables in HP Fortran 90 are automatic.