求用C语言设计的图书管理系统
求用C语言设计的图书管理系统
日期:2016-02-06 12:43:09 人气:2
#include
#include
#include
#include
#include
#define STACK_INIT_SIZE 10
#define OK 1
#define TRUE 1
#define FALSE 0
#define ERROR 0
struct student /*定义学生类型,用于存放借出的书籍*/
{
int carnum;
char lendbook[10];
}student[1000];
st