2020
12-10
12-10
C语言单链表实现学生管理系统
本文实例为大家分享了C语言单链表实现学生管理系统的具体代码,供大家参考,具体内容如下代码:#include<stdio.h>#include<stdlib.h>#include<string.h>#include<malloc.h>structStudent{intnum;//学号charname[20];//名字charsex[2];intage;structStudent*next;};voidinsert(structStudent**head);//插入voidprint(structStudent*head);//遍历所有链表voiddele(structStudent**head);//删除指定内容vo...
继续阅读 >