这是自己写的还是课本的
*a是upper存的值啊,解引用啊,
int x=1; int*p=x; printf("%d",*p); (*p)++; printf("%d",x);
你看看
( *a) 表示取a所指向的地址的值,若s=’a’,a=&s,则( *a)++的值为’b’