C语言问题2
C语言问题2
日期:2022-04-06 01:28:11 人气:1
#define NULL 0
#define TYPE struct stu
#define LEN sizeof (struct stu)
struct stu
{
int num;
int age;
struct stu *next;
}; //这是结构体的组成,包括NUM,AGE,和一个连接结构体得
#define TYPE struct stu
#define LEN sizeof (struct stu)
struct stu
{
int num;
int age;
struct stu *next;
}; //这是结构体的组成,包括NUM,AGE,和一个连接结构体得