Parameter Passing by Value

Each language permits passing parameters by value.

Visual FoxPro BASIC
=ABC(X)
ABC ByVal X 
Pascal C/C++
procedure ABC (x:integer);
ABC(X);

See Also

Assignment Statements | Case Sensitivity | CASE Statements | Comments | FOR Loops | IF Statements | Parameter Passing by Reference | Variable Declaration | WHILE Loops