用c语言编写的学生信息管理系统#include "stdio.h" #define N 2 typedef struct node /*创建结构体*/ { int num; char name[20]; char tele[20]; struct node *next; }node,*link; link Initlist() /*初始化单链表*/ { link l; int i; l=(link)malloc(sizeof(node)); l->next=NULL; return l; } link Creatlist(