当然会加! 请看下面的验证程序 #include <stdio.h>
main() { int a[2]={0,1}; int *p; p=a; while(*p++!=0) printf("#\n"); printf("%d\n",*p); }