指针的问题

int *p,  p是整型指针
*是取值,p是地址 ,*p表示p指向内存块中存储的值
int a,  &a表示取这个整型变量的存储地址
原文地址:https://www.cnblogs.com/yaohunzhanyue/p/6009984.html