This wiki is out of date, use the continuation of this wiki instead

Parameter

From FenixWiki

Revision as of 10:47, 1 March 2008 by Sandman (Talk | contribs)
Jump to: navigation, search

Definition

A parameter is the variable and its value inside the definition of a function or process that is received from the calling environment. The value passed on when calling the function or process is called an argument.

Example

Private
    int argument = 3;
Begin
    my_proc( argument );
End
Process my_proc( int parameter )
Begin
    //statements
End
Personal tools