发布网友
共2个回答
热心网友
是指向链表中下一个节点的指针,每个节点都是结构体类型struct
student类型的数据。
有了这个指针才能把一个一个的节点连接成一个链表。
热心网友
“struct
student
{
char
sno[4];
/*学号*/
char
sname[21];
/*姓名*/
int
age;
/*年龄*/
int
score[5];
/*五门成绩*/
/*下一学生指针*/
struct
student
*next;
}”
这里的
*next是指重复下一个学生的链表操作