You are on page 1of 2

Summary

Passing by value: This method copies the actual value of an argument into the formal parameter
of the function. In this case, changes made to the parameter inside the function have no effect on
the argument.

Passing by reference: This method copies the reference of an argument into the formal
parameter. Inside the function, the reference is used to access the actual argument used in the
call. So, changes made to the parameter also affect the argument.
In general, passing by value is faster and more effective. Pass by reference when your function
needs to modify the argument, or when you need to pass a data type, that uses a lot of memory
and is expensive to copy.

In general, passing by value is faster and more effective. Pass by reference when your function needs to
modify the argument, or when you need to pass a data type, that uses a lot of memory and is expensive
to copy.

Explain of function

You might also like