Level 1

Pass by Pointer

views

5:41
This is the easiest and most widely used type of passing parameters. A copy of the variable that is being passed as the parameter is made at the location from where the function is called. Even if the function changes the value of this variable, it does not change in the location from where the function was called.