qfedu-c-level/day15/d1-stuMangerSystem/includes/stu_s.h

15 lines
229 B
C

#ifndef __STU_S_H__
#define __STU_S_H__
// 学生信息结构体头文件
// 定义学生信息结构体,链表的节点
typedef struct stu_s
{
int sid;
char name[32];
int age;
struct stu_s *next;
} STU;
#endif