Is Pointer Variable also Assigned a Memory Address?
- by yuespace
In C++:
On stack, a simple variable is assigned a memory address so that we can use pointer to contain this memory to point to it;
then is a pointer also assigned a memory address?
if yes, we can have pointer of pointers now?
Thanks!