A pointer passed by value to a function allows the function to change the _______ to which the pointer points. 

  • value 
  • address 
  • direction 
  • data type
When a pointer is passed by value to a function, the function gets a copy of the pointer. This means that the function can modify the data at the address the pointer points to, but it cannot change the address of the original pointer itself.
Add your answer
Loading...

Leave a comment

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