What does a storage class define regarding variables?
Life-time
Visibility
Scope
Auto
The default storage class for all local variables
Register
to define local variables that should be stored in a register instead of RAM
Static
Instructs the compiler to keep a local variable in existence during the life-time of the program
extern
to give a reference of a global variable that is visible to ALL the program files