摘要: #include <stdio.h> #define N 5 int main() { int a[N] = {1, 9, 2, 0, 7}; int i; int *p; for(i=0; i<N; ++i) printf("&a[%d] = %#x, a[%d] = %d\n",i, &a[i] 阅读全文
posted @ 2021-12-13 23:40 一会交作业 阅读(17) 评论(0) 推荐(0) 编辑