C语言试题,不明白为什么总是说i没有定义,求大神指教
											题目:学生的记录是由学号和成绩组成的,N名同学的数据已在主函数中放入结构体数组s中,请编写函数fun,他的功能是:函数返回指定学好的学生数据,指定的学号在主函数输入。如果没有找到指定学号,在结构体变量中给学号置空串,给成绩-1(我的问题是为什么以下代码总是提示i没有定义,) 程序代码:
程序代码:#include <stdio.h>
#include <string.h>
#define N 16
typedef struct
{char num[10];
   int s;
} STREC;
STREC fun(STREC *a, char *b)
{STREC d;
d.s=-1;
d.num[0]='\0';
int i;
 for(i=0;i<N;i++)
     if(strcmp(a[i].num,b)==0)
     {strcpy(d.num,a[i].num);
      d.s=a[i].s;
      break;}
 return d;
}
main()
{STREC s[N]={{"GA005",85},{"GA003",76}, {"GA002",69},{"GA004",85},{"GA001",91},{"GA007",72},{"GA008",64},{"GA006",87},{"GA015",85},{"GA013",91},{"GA012",64},{"GA014",91},{"GA011",77},{"GA017",64},{"GA018",64},{"GA016",72}};
   STREC h;
   char m[10];
   int i;FILE *out ;
   printf("The original data:\n");
   for(i=0; i<N; i++)
   {if(i%4==0) printf("\n");
      printf("%s %3d ",s[i].num,s[i].s);
   }
   printf("\n\nEnter the number: ");gets(m);
   h=fun(s,m);
   printf("The data : ");
   printf("\n%s  %4d\n",h.num,h.s);
   printf("\n");
   out = fopen("out.dat","w");
   h=fun(s,"GA013");
   fprintf(out,"%s  %4d\n",h.num,h.s);
   fclose(out);
}										
					
	


 
											





 
	    

 
	



 
											
