首页
Python
Java
前端
数据库
Linux
Chatgpt专题
开发者工具箱
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,
阅读更多...