Explain call by value and call by reference parameter passing mechanisms
Answers
Answered by
2
Answer:
in call by value, a copy of variable is passed whereas in call by reference, a variable itself is passed.In call by value, actual and formal arguments will be created in different memory location whereas call by reference, actual and formal arguments will be located in the same memory location
Similar questions