摘要: // 将图书信息写入文本文件data1.txt #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-05 18:04 夏洁 阅读(12) 评论(1) 推荐(0) 编辑