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