I-AM-Y

导航

2020年12月17日 #

第五次实验 数组和指针

摘要: 任务1 #include <stdio.h> const int N=3; int main() { int a[]={1,2,3}; int i; printf("通过数组名以及下标直接访问数组元素:\n"); for (i=0;i<N;i++) printf("%d: %D\n",&a[i],a 阅读全文

posted @ 2020-12-17 14:47 I-AM-Y 阅读(71) 评论(5) 推荐(0) 编辑