pacing response
Programmable array logic(PAL)
pass-by-CONST
In Pascal, the parameter-passing mechanism by which the address of a variable is passed to the called routine. The called routine is not permitted to modify the formal parameter. Synonymous with pass-by-read-only-reference
pass-by-read/write-reference
pass-by-value
In Pascal, the parameter-passing mechanism by which a copy of the value of the actual parameter is passed to the called routine. If the called routine modifies the formal parameter, the corresponding actual parameter is not affected.
pass-by-VAR
In Pascal, the parameter-passing mechanism by which the address of a variable is passed to the called routine. If the called routine modifies the formal parameter, the corresponding actual parameter is also changed. Synonymous with pass-by-read/write-reference.