unsigned short pp;
unsigned short array[]={8750,10800,530,1720};
unsigned short *int_ptr=array;
//pp=*++int_ptr; FF
//pp=++(*int_ptr); AA
//pp=++*int_ptr; BB
//pp=*int_ptr++; CC
//pp=(*int_ptr)++; DD
//pp=*(int_ptr++); EE
printf("\n%d\n",pp);
pp=*int_ptr;
printf("%d\n",pp);
FF 输出10800 10800
AA BB 输出 8751 8751
CC输出 8750 8751
DD EE 输出 8750 10800