You must log in or register to comment.
You can have a pointer to a pointer in c++ too tho?
You don’t say.
Can you have two pointers pointing at each other?
void* ptr2 = &ptr1; ptr1 = &ptr2;```
You can have a pointer to a pointer in c++ too tho?
You don’t say.
Can you have two pointers pointing at each other?
void* ptr2 = &ptr1;
ptr1 = &ptr2;```