Call by Pointer - NayiPathshala

Breaking

Total Pageviews

Loading...

Search Here

1/05/2018

Call by Pointer

Call by Pointer 

The call by pointer method of passing arguments to a function copies the address of an argument into the formal parameter. Inside the function, the address is used to access the actual argument used in the call. This means that changes made to the parameter affect the passed argument.

To pass the value by pointer, argument pointers are passed to the functions just like any other value. So accordingly you need to declare the function parameters as pointer types as in the following function swap(), which exchanges the values of the two integer variables pointed to by its arguments.

To check the more detail about C++ pointers, kindly check C++ Pointers chapter.
For now, let us call the function swap() by passing values by pointer as in the following example:

When the above code is put together in a file, compiled and executed, it produces the following result:When the above code is put together in a file, compiled and executed, it produces the following result:
 

No comments:

Post a Comment