指针

int  * p;  //定义一个int类型的指针变量;

int a =30;

p = &a;  //给指针变量赋值 (传递地址)

*p     //解引用

原文地址:https://www.cnblogs.com/lianfeng132/p/12350154.html