int find_student(struct student_struct student1[], char name1[], int size)
{
int i;

for (i=0;i<80;i++)
   if (strcmp(name1,student1[i].name)==0)
   return (i);
}

