一个C语言动态链表的输入问题 求教

#include<stdio.h> #include<stdlib.h> #define LEN sizeof(struct stu) struct stu{ int id; char name[10]; float score; struct stu *next; }; int n; struct stu *creat(void) //创造 { struct stu *head,*p1,*p2;
相关文章
相关标签/搜索