Concept Flow - Extern storage class
Declare variable with extern
Variable defined elsewhere
Linker connects declaration to definition
Variable can be used in this file
Program compiles and runs
Extern tells the compiler a variable is defined in another file, so it links them together for use.