
Functions (II)
Arguments passed by value and by reference.
Until now, in all the functions we have seen,
the arguments passed to the functions have been passed by value. This
means that when calling a function with parameters, what we have passed to the
function were copies of their values but never the variables themselves. For
example, suppose that we called our first function additionusing [...]