like simple variables ,the pointer variables can also be used as a Value parameter or Reference parameter in functions..... but as the pointer variables are used 2 hold memory location or content of memory location then what more difference will it make if the pointer variable is used either as Value or as Reference parameter????
feedback
|
|
If function A passes a pointer P by reference to another function B, then B can make P point to a different location in memory, and A will see that change. If, on the other hand, A passes P by value, then B can only change the contents of the memory that P points to. A will see changes to that memory, but P will never point to a different spot in memory when B returns. | |||||
feedback
|
|
The difference is as follows:
Here, I am talking about the value of the pointer itself (i.e. where it points), and not about the value of the pointed-to object. | |||
|
feedback
|
|
The small example illustrates the need to pass a pointer by reference
| |||
|
feedback
|
Consider the above program. The first line will always print zero, meaning that | |||
|
feedback
|