學生信息存儲。

鏈表實現,並按年齡排序。 # 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;
相關文章
相關標籤/搜索