这可能很简单,但它让我感到困惑。
int x;
int *p = NULL;
int *q = &x;
什么时候发生
q = p; // Address where q points to equals NULL .
&x = q; // I don't think this is possible .
*q = 7; // Value of memory where q is pointing to is 7?
*q = &x // That's just placing the address of x into memory where q points to right?
x = NULL;