void Award (struct stu * head)
.
.
.
.
void Award (struct stu* head)
{
int max = 0;
for(struct stu* p = head; p != NULL; p = head->next){
if(p->point > max)
max = p -> point;
}
for(struct stu* p = head; p != NULL; p = head->next){
if(p->point == max){
printf("%d ", p->id);
}
}
putchar('\n');
}