11 2023 档案

摘要:task1_1.c 1 #include <stdio.h> 2 #define N 5 3 4 void input(int x[], int n); 5 void output(int x[], int n); 6 void find_min_max(int x[], int n, int *p 阅读全文
posted @ 2023-11-29 20:58 FrederickJACK 阅读(11) 评论(0) 推荐(0)
摘要:task1-1.c 1 #include <stdio.h> 2 #define N 4 3 4 void test1() { 5 int a[N] = {1, 9, 8, 4}; 6 int i; 7 8 // 输出数组a占用的内存字节数 9 printf("sizeof(a) = %d\n", 阅读全文
posted @ 2023-11-15 20:52 FrederickJACK 阅读(27) 评论(0) 推荐(0)