C++ Conceptual problem with (Pointer) Pointers
- by Ptr
I have a structure usually containing a pointer to an int. However, in some special cases, it is necessary that this int pointer points to another pointer which then points to an int. Wow: I mentioned the word pointer 5 times so far!
Is this even possible?
I thought about it that way: Instead of using a second int pointer, which is most likely…