Computer Science, asked by Anonymous, 7 months ago

Name the parameter who receives the values passed from
function caller.​

Answers

Answered by shivaramcvm
0

Arguments are passed by value; that is, when a function is called, the parameter receives a copy of the argument's value, not its address. This rule ... Modifying a parameter does not modify the corresponding argument passed by the function call. ... Therefore, parameters of the same name in different functions are unrelated.

Similar questions