1.

What is pass by reference in functions?

Answer»

In Pass by reference, the CALLEE receives the address and makes a copy of the address of an ARGUMENT into the formal PARAMETER. Callee FUNCTION uses the address to access the actual argument (to do some manipulation). If the callee function changes the value ADDRESSED at the passed address it will be visible to the caller function as well.

Pass By Reference


Discussion

No Comment Found