【C语言】-- 学生管理系统
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
//枚举
typedef enum{
false =0,
true =1
}bool;
//如果函数传参类型为结构体类型则需要结构体创建声明在前,函数声明在后。
typedef struct{
int id;
int val;
}Data;
typedef struct LinkList{
//数据域
Data data; //.
原创
2022-05-15 21:06:33 ·
523 阅读 ·
0 评论