In pass by reference, changing the values of formal Parameters will change the values in actual parameters.Give reason.
Answers
Answered by
0
Answer:
The pass by reference method of passing arguments to a function copies the address of an argument into the formal parameter. Inside the function, the address is used to access the actual argument used in the call. It means the changes made to the parameter affect the passed argument.
Explanation:
Similar questions