2022年6月7日
摘要: task1-1 #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[ 阅读全文
posted @ 2022-06-07 17:22 wangyfan 阅读(31) 评论(2) 推荐(0)