C语言图书管理系统
C语言图书管理系统#include<stdio.h>#include<stdlib.h>#include<string.h>struct book{ int num; char bname[50];
C语言图书管理系统