C语言编程 编写程序,建立一个学生数据链表,学生的数据包括学号、姓名、成绩。

日期:2016-10-05 17:56:40 人气:1

C语言编程 编写程序,建立一个学生数据链表,学生的数据包括学号、姓名、成绩。

#include #include #define NULL 0 struct stud { int no; char name[12]; int age; struct stud*next; }; #define LEN sizeof(struct stud) struct stud*creat(void) { struct stud*p1,*p2,*head; int n=0; p1=(struct stud*)malloc(LEN); scanf(&q
    A+
热门评论