Local Variables
Functions only “see” their own local variable. This includes main ( )
The variables that are passed to the function are matched with the formal parameters in the order they are passed
The parameters are declarations of local variables. The values passed are assigned to those variables
Other local variables can be declared within the function