请各位帮帮忙,怎么不能运行.错误提示是:Declaration syntax error
#include "stdio.h"
#include "malloc.h"
#define NULL 0
#define struct student S
#define LEN sizeof(S)
S
{                           
   long num;
   char sex;
   float score;
   S *next;
}
int n;
S *creat(void)
{
   S *head;
   S *p1,*p2;
   n=0;
   p1=p2=(S *)malloc(LEN);
   head=NULL;
   scanf("%ld,%c,%f\n",&p1->num,&p1->sex,&p1->score);
   while(p1->num!=0)
    {
      n=n+1;
      if(n==1) head=p1;
      else p2=p1;
           p1=(S *)malloc(LEN );
           scanf("%ld,%c,%f\n",&p1->num,&p1->sex,&p1->score);
           p2->next=p1;
     }
     p2->next=NULL;
     return(head);
}
S *insert(S *head,S *add)
{
   S *p0,*p1,*p2;
   p1=head;
   p0=add;
   if(head=NULL)
   {
      head=p0;
      p0->next=NULL;
   }
   else
   {
      while((p0->num>p1->num)&&(p1->next!=NULL))
      {
        p2=p1;
        p1=p1->next;
        p2->next=p0;
        p0->next=p1;
      }
      if(p0->num<p1->num)
      {
         head=p0;
         p0->next=pi;
      }
      else
      {
         p2->next=p0;
         p0->nest=p1;
      }
   }
   n=n+1;
   return(head);
}
S *del(S *head,long num)
{
   S *p1,*p2;
   if(head==NULL)
   {
      printf("\nlist null\n");
      goto end;
   }
   p1=head;
   while((num!=p1->num)&&(p1->next!=NULL))
   {
      p2=p1;
      p1=p1->next;
   }
   if(num=p1->num)
   {
      if(p1==head) head=p1->next;
      else p2->next=p1->next;
      printf("delete : %ld\n",num);
      n=n-1;
   }
   else printf("%ld not been found\n",num);
   end;
   return(head);
}
void print(S *head)
{
   S *P;
   printf("\nnow there %ld records are : \n",n);
   P=head;
   if(head!=NULL)
   do
   {
      printf("%ld,%c,%f\n",p->num,p->sex,p->score);
      P=P->next;
   }
   while(P!=NULL)
}
main()
{
   S *head,*add;;
   long del_num;
   printf("input records:\n");
   head=creat();
   print(head);
   printf("input the delete number:");
   scanf("%ld\n",&del_num);
   head=del(head,del_num);
   printf("input the insert record:");
   scanf("%ld.%c,%f\n",&add.num,&add.sex,&add.score);
   head=insert(head,add);
   print(head);