Typedef structure data {
int num
char name[20];
Floating score [m];
} data; //Define the student data structure
Typedef structure stu{
Data students;
struct stu * next
}stu, * LinkList// defines the head node of the linked list.
Then establish a linked list of this structure.
l =(LinkList)malloc(sizeof(stu));
If (! l)
Returns 0; //Exception handling
l-& gt; Next = NULL// Create a single linked list with leading nodes.
Then enter the student data function, so that you can enter different types of data at the same time.
I didn't call. I don't know if I understand ... I feel messy. .............