*取值操作符 &取址操作符

//*取值操作符 &取址操作符
int i=2000;
int pointer;
pointer=&i;
printf("%d ",
pointer);

原文地址:https://www.cnblogs.com/poli/p/4532013.html