Question:
What are passing arguments by reference and passing arguments by value?
Answer
passing arguments by value:Means any changes made to those values within the scope of the function are ignored outside of the function.
passing arguments by reference:Means any changes made to those values within the scope of the function are reflected outside of the function.
+ Report
What are passing arguments by reference and passing arguments by value?