C语言程序设计-图书管理系统

#include<stdio.h> #include<string.h> #include"malloc.h"   int a[9]; struct node{ char no[40];/*编号*/  char name[60];/*名称*/  int num;/*借阅次数*/  struct node * link;/*指向下一节点的指针struct node * 形式的指针link*/  };
相关文章
相关标签/搜索