本文实例为大家分享了C语言实现医院管理系统的具体代码,供大家参考,具体内容如下
#include stdio.h
#include string.h
#include stdlib.h
#include malloc.h
#define NULL 0
typedef struct
{ int num;
char name[10];
int age;
char sex;
}people; //一个患者的信息
typedef struct Node
{
people *data;
struct Node *next;
}queue; // 定义队列结构体
typed
1