int i=1;int *p=&i;*p++=0;printf("%d \\n",*p);printf("%d \\n",i);
请大家猜测一下这里的*p和i是啥
A.*p=0,i=1 B.*p=0,i=1 C.*p=1,i=1 D.*p未知,i=0 E.*p未知,i=1