

InterviewSolution
Saved Bookmarks
1. |
Differentiate between call by value and call by reference |
Answer» In call by value function create its own copy of argument and use them.Any change that are made in actual parameter that will not reflect back to formal parameter and vice versa.In call by reference instead of making a separate copy of value adress is passed.so changes in actual parameter reflect formal parameter and vice versa. | |