

InterviewSolution
Saved Bookmarks
1. |
What is difference between call by value and call bye reference method |
Answer» In call by value method a copy of actual parameter goes to formal parameter and whatever changes are made in formal parameter are not reflected after the function calling is over...but in reference actual itself goes to formal and the changes made are permanent | |