求助关于链表的小小问题
struct stu{
int num;
int age;
struct stu *next;
};
TYPE *creat(int n)
{
struct stu *head,*pf,*pb,*x;
int i;
for (i=0;i<n;i++)
{
pb=(TYPE *)malloc(LEN);
printf("input Number and Age\n");
scanf("%d%d",&pb->num,&pb->age);
if (i==0)
{pf=head=pb;
x=pf;}
else pf->next=pb;
pb->next=NULL;
pf=pb;
}
我想请问一下这个for循环中每一行的意思是什么?、为什么要这样?是什么作用?特别是if以下的几行不懂有什么作用~~~~~~请教 谢谢~~~