11 2023 档案

摘要:任务1-1 #include<stdio.h> #define N 4 void test1() { int a[N] = {1,9,8,4}; int i; //输出数组a占用的内存字节数 printf("sizeof(a) = %d\n",sizeof(a)); //输出int类型数组a的每一个 阅读全文
posted @ 2023-11-16 20:05 胡彦超 阅读(20) 评论(0) 推荐(0)
摘要:任务1 #include<stdio.h> #include<stdlib.h> #include<time.h> #include<windows.h> #define N 80 void print_text(int line,int col,char text []);//函数声明 void 阅读全文
posted @ 2023-11-04 17:20 胡彦超 阅读(25) 评论(0) 推荐(0)