Just as the title says, can I pass a pointer to a function so it's only a copy of the pointer's contents? I have to be sure the function doesn't edit the contents.
Thank you very much.
|
|
Unless the function takes a |
|||||||||
|
|
You can use
here But it doesn't guarantee that you can't change the contents, because by creating another pointer to same content you can modify the contents. So,It's up to you , how are you going to implement it. |
||||
|
|
|
Yes,
In
|
|||||||||||
|
|
A constant pointer is declared like this:
Note that in this case you can change the value pointed by the pointer, but you can't change the pointer itself. |
|||
|
|
What contents? The value pointed to by the pointer? In this case, you can declare your function like
then If you just want to make sure |
|||||||
|