06 2022 档案

摘要:task1_1 1 #include <stdio.h> 2 #include<stdlib.h> 3 #define N 4 4 int main() 5 { 6 int x[N] = {1, 9, 8, 4}; 7 int i; 8 int *p; 9 // 方式1:通过数组名和下标遍历输出数组 阅读全文
posted @ 2022-06-14 09:45 balamala 阅读(18) 评论(1) 推荐(0)
摘要:task1_1 1 #include<stdio.h> 2 #include<stdlib.h> 3 #define N 5 4 #define M 80 5 6 typedef struct 7 { 8 char name[M]; 9 char auther[M]; 10 /* data */ 1 阅读全文
posted @ 2022-06-06 22:58 balamala 阅读(24) 评论(0) 推荐(0)