实验六
摘要:
#include <stdio.h> #define N 4 int main() { int x[N] = {1, 9, 8, 4}; int i; int *p; // 方式1:通过数组名和下标遍历输出数组元素 for(i=0; i<N; ++i) printf("%d", x[i]); pri 阅读全文
posted @ 2022-06-07 15:12 小张张1 阅读(35) 评论(4) 推荐(0) 编辑
2022年6月7日 #
posted @ 2022-06-07 15:12 小张张1 阅读(35) 评论(4) 推荐(0) 编辑
2022年6月1日 #
posted @ 2022-06-01 21:12 小张张1 阅读(52) 评论(3) 推荐(0) 编辑
2022年5月3日 #
posted @ 2022-05-03 22:17 小张张1 阅读(24) 评论(4) 推荐(0) 编辑
2022年4月19日 #
posted @ 2022-04-19 16:06 小张张1 阅读(22) 评论(3) 推荐(0) 编辑
2022年4月12日 #
posted @ 2022-04-12 15:24 小张张1 阅读(95) 评论(2) 推荐(0) 编辑
2022年3月22日 #