月间
个人学习记录,大部分是摘抄式的学习本
摘要: 1 #include <stdio.h> 2 #include <stdlib.h> 3 4 struct Book 5 { 6 char title [128]; 7 char author [40]; 8 struct Book *next; 9 }; 10 11 void getInput(s 阅读全文
posted @ 2020-02-22 17:18 月间 阅读(910) 评论(0) 推荐(0) 编辑