图书管理系统(适用于大一大二的课设C语言链表)
要新建一个book文本才可以正常使用 #include #include #include #include typedef struct book{ int id; char name[20]; int price; char writer[20]; void show() //展示 { printf("名字:%s 编号:%d 价格:%d 作者:%s\n",name,id,price,writer); } struct book *next; }book; typedef s
下载地址
用户评论