摘要: #include<stdio.h> const int N=3; int main(){ int a[N] = {1, 2, 3}; int i; printf("通过数组名和下标直数组元素:\n"); for(i=0; i<N; i++) printf("%d: %d\n", &a[i], a[i 阅读全文
posted @ 2021-05-26 20:13 李一鑫 阅读(67) 评论(2) 推荐(0)