求用链式存储结构写的学生信息管理系统,c语言

日期:2021-06-01 22:39:17 人气:1

求用链式存储结构写的学生信息管理系统,c语言

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
typedef struct student
{
int id;
int csn;
int csy;
char name[10];
} STU;
typedef struct node
{
STU date;
struct
    A+
热门评论