When passing by reference, changes made to the parameter within the function _______ the original argument. 

  • alter 
  • bypass 
  • skip 
  • hide
When passing arguments by reference in C++, any modifications made to the parameter within the function directly alter the original argument. This is different from passing by value, where the function works on a copy and the original remains unchanged.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *