3
votes
when to pass fuction arguments by reference and when by address?
This has already been discussed. See Pointer vs. Reference.
…
2
votes
What does a const pointer-to-pointer mean in C and in C++?
You were right in your interpretation. Here's another way to look at it:
const MyStructure * *ppMyStruct; // ptr --> ptr --> const MyStructure
MyStructure *c …
