First page Back Continue Last page Graphics
Passing By Value
The most normal way for C++ to pass arguments.
It copies the value of an actual parameter into a location specified by the dummy argument in the scope of the function. (run time stack)
Prevents any modifications of this value within the function from affecting the value external to the function.