int n=12345; int *ptr; ptr=&n; printf("%d \n",*ptr); 我知道*是获取数值的。明明ptr只指向n的内存地址,为什么*ptr会获取到n的数值?
__innocence
相关分类