Call by reference is a method of passing arguments to a function where the function can modify the actual variable used in the call. This is because the function receives a reference to the variable, not a copy of its value, allowing changes to reflect outside the function scope.
Relevant Degrees