前段时间学习链表,编一个学生管理系统,欢迎指正

//编译预处理 #include<stdio.h> #include<stdlib.h> #include<string.h> #include<conio.h> //自定义数据类型 typedef struct {  int num;  char name[20];  double score; }STD; typedef struct lnode {  STD data;  struct ln
相关文章
相关标签/搜索