formal parameter receive values from the actual parameter true or false
Answers
Answered by
0
Answer:
Methods for Parameter Passing - Main Methods
void 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.
Similar questions