是否有可能找到指针变量本身的内存位置?
即我不想知道指针引用的内存位置,我想知道指针变量的内存位置是什么.
int A = 5; int *k = &A; cout << k;
会给我的位置A.确实k有一个位置?
A.
k
c++ pointers
c++ ×1
pointers ×1