摘要: #include <stdio.h>#include <stdlib.h>#define dprint(A) printf("%s:\t\t%p\n", #A, A);void foo(int n, int m){ int xy = 8; int a[n]; int x = 1; float y = 1.0; dprint(&xy); dprint(&x); dprint(&y); printf("&a[%d]:\t%p\n",m, &a[m]); dprint(a);}int main(i 阅读全文
posted @ 2012-08-25 21:37 庄庄庄 阅读(828) 评论(0) 推荐(0) 编辑