#include #include #define N 10 typedef struct student { int num; float score; struct student *next; }STU; STU *create() { int i; STU *p,*head=NULL,*tail=head; for (i=0;inum,... Read More
#include #include #define N 10 typedef struct student { int num; float score; struct student *next; }STU; STU *create() { int i; STU *p,*head=NULL,*tail=head; for (i=0;inum,... Read More