摘要:
#include<stdio.h>void main(){char *p="abcdef";printf("%c,%c\n",*p,*p++);printf("%c,%c\n",*p,*p++);}输出为:b,a c,b#include<stdio.h>void main(){char *p="abcdef";printf(“%c\n",*p);printf("%c\n",*p++);}输出为 a a解:函数计算顺序从右至左 阅读全文
posted @ 2012-10-23 13:42
fivebird
阅读(117)
评论(0)
推荐(0)

浙公网安备 33010602011771号