Parameter Correspondence
The parameters name the input values and the output results to the procedure
The number of parameters in the declaration must match the number of parameters in the call, and they correspond one-to-one
The parameters are referred to by separate names
- Formal parameters are parameters of the declaration
- Actual parameters are parameters of the call
Call convertC2F(38, degreesF)
Private Sub convertC2F (tempInC As Integer, tempInF As Integer)
tempInF = 9 * tempInC / 5 + 32