InterviewSolution
Saved Bookmarks
| 1. |
Formal parameter receive values from the actual parameter true or false |
|
Answer» Methods for Parameter PASSING - Main Methodsvoid f(int); The formal parameter is separate, DISTINCT variable and RECEIVES a copy of the VALUE of the corresponding actual parameter. Changes to the formal parameter do not affect the value of the actual parameter. C++ uses call by value by DEFAULT. |
|