求各位大神给看一下,这个题是个改错题,目的是统计专业人数, ,将其中编号为02的计算机专业学生输出。但是我改好后,发现第一个录入的学号无法被使用,如图,改了学号的次序后,结果不一样,求大神解答
#include <stdio.h>
#include<stdlib.h>
#include<string.h>
struct node
{
char code[8];
struct node *next;
};
int main()
{struct node *head,*p;
int i,n,count=0;
char str[8];
int size=sizeof(struct node);
head=NULL;
gets(str);
while(strcmp(str,"#")!=0)
{
p=(struct node*)malloc(size);
strcpy(p->code,str);
p->next=head;
head=p;
gets(str);
}
for(p=head;p->next!=NULL;p=p->next)
if(p->code[1]=='0'&&p->code[2]=='2')
count++;
printf("%d\n",count);
return 0;
}