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
相关文章
相关标签/搜索