怎么会这样……
#include <stdio.h>int main(int argc, char *argv[])
{int num[5]={5,6,8,2,3};
int *ps;
ps=num;
while(*(ps+4)!=*ps)
{
printf("%d\n",*(ps++));
}
}
结果是这样的
5
6
8
2
3
4199284
2293624
4199386
4199284
2147307520
2293680
4198987
1
4072600
4074120
4210688
2293668
-1
2293672
0
0
4074120
0
2147307520
2293696
4199064
1
9
2293744
2088857719
4
37812200
2147307520
-2141904134
2293704
-2014703584
-1
2088999640
2088857728
可是当*ps的值与最后一个值相等是我就跳出循环了……