指針與地址的加減

指針與地址的加減 摘自http://http://www.cnblogs.com/haore147/p/3647231.htmlhtml int main() { int a[5]={1,2,3,4,5}; int *ptr=(int *)(&a+1); printf("%d,%d",*(a+1),*(ptr-1)); return 0; } 如上,a是一個一維數組
相關文章
相關標籤/搜索