学生信息存储。

链表实现,并按年龄排序。 # include <stdio.h> # include <stdlib.h> typedef struct Node { char num[20]; char name[20]; int age; char sex[3]; struct Node *next; }; struct Node *Create_List(int n) { int j;
相关文章
相关标签/搜索