C語言單鏈表實現學生管理系統(增刪改查)

剛學C語言 有什麼不好的地方 求大佬提出 #include<stdio.h> #include<stdlib.h> #include <string.h> #include <malloc.h> struct Student { int num;//學號 char name[20];//名字 char sex[2]; int age; struct Student *next; }; v
相關文章
相關標籤/搜索