今天在CU论坛上逛,看到大家又在喷老谭,虽然帖子很长,但是我还是看完了。其中看到了关于数组指针的一点讨论,很有收获。
原帖如下:(图片如果看不清楚,双击查看)
然后我试了果然是这样的。
- #include <stdio.h>
-
int main(void)
-
{
-
int a[10];
-
int b,c ;
-
printf("a = 0x%x\n",a);
-
b = a+1;
-
printf("b = 0x%x\n",b);
-
c = &a+1;
-
printf("c = 0x%x\n",c);
-
}
结果如下:
[root@WX-ASIC-S03 study]$ ./arrary_pointer
a = 0xbfe47e14
b = 0xbfe47e18
c = 0xbfe47e3c
阅读(1310) | 评论(0) | 转发(0) |