pirmer专题

C pirmer Plus(第五版) 第十四章 课后习题 3

 #include <stdio.h> #include <stdlib.h> #define MAXITL 40 #define MAXAUTL 40 #define MAXBKS 10 struct book{  char title[MAXITL];  char author[MAXAUTL];  float value; }; int cmp1(const void * a,