06 2022 档案

摘要:#include <stdio.h> #define N 4 int main() { int x[N] = {1, 9, 8, 4}; int i; int *p; printf("%d", x[i]); printf("\n"); for(p=x; p<x+N; ++p) printf("%d" 阅读全文
posted @ 2022-06-13 20:54 布绒亦 阅读(18) 评论(0) 推荐(0)
摘要:#include <stdio.h> #define N 5 #define M 80 typedef struct { char name[M]; char author[M]; }Book; int main() { Book x[N] = { {"一九八四", "乔治.奥威尔"}, {"美丽新 阅读全文
posted @ 2022-06-06 22:00 布绒亦 阅读(20) 评论(0) 推荐(0)