- This wiki is out of date, use the continuation of this wiki instead
Argument
From FenixWiki
(Difference between revisions)
Sandman (Talk | contribs)
(New page: == Definition == An argument is the value passed on when calling a function or process. The variable and its value inside the definition of a function or process i...)
Next diff →
Revision as of 10:49, 1 March 2008
Definition
An argument is the value passed on when calling a function or process. The variable and its value inside the definition of a function or process is called a parameter.
Example
Private
int argument = 3;
Begin
my_proc( argument );
End
Process my_proc( int parameter )
Begin
//statements
End
