argument

A value passed from a calling routine to a function. In the calling routine, the value passed is called an actual argument. Within the function definition, the name of the argument is called a formal argument. When the function is called, the value of the actual argument is assigned to the corresponding formal argument variable.

See also actual argument, calling routine, formal argument, pass-by-reference, pass-by-value, programmer-defined function, report.