Parameters transfer values between caller and procedure
formal parameters:
actual parameters:
An example shows a program that includes a procedure with parameters. The actual parameters in the calling program are associated in respective order with the formal parameters in the procedure.
ordered association (first actual --> first formal, etc):
An example demonstrates the association of parameters when a procedure is called; when it is about to finish executing and return parameter values to its caller; and when control returns to the caller.