static

Example: static

The default Storage-Class Specifier for global variables which makes the variable available only to functions within the current file. You can also define a static variable within a function. The variable is initialized at compilation time and retains it value between calls.