摘要: #include<stdio.h> const int N = 3; int main(){ int a[N] = {1, 2, 3}; int i; for(i = 0; i < N; i++) printf("%d: %d\n", &a[i], a[i]); printf("通过地址间接访问数组 阅读全文
posted @ 2020-12-16 14:42 鸣蜩 阅读(53) 评论(2) 推荐(0) 编辑