C語言學習(29)

1 //鏈表的學習 2 #include<stdio.h> 3 #include<malloc.h> 4 #define LEN sizeof(struct student) 5 struct student{ 6 int num; 7 float score; 8 struct student *next; 9 }; 10 int n;/
相關文章
相關標籤/搜索