一個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;
相關文章
相關標籤/搜索