C语言需要注意的问题
1、*p++,*++p,*(p++),*(++p)这四种书写不等价/*********test p *******/int _tmain(int argc, _TCHAR* argv[]){ int b int a[]={1,2,3}; int *p; p=&a[1]; b=*++p; printf("current p is %x
current *p is %d
b is %d",p,*p,b); return 0;}/************...