这个机构体中不能用结构体指针的循环么?内详。
#include<stdio.h>main()
{
struct student
{
char name[20];
long num;
float score[3];
}st={"wuxiangdong",2011005474,28,48,54.9},*p;
p=&st;
int i=0;
for(i;i<3;i++)
printf("%s\t%ld\t%f",p->name,p->num,p->score[i]);
getch();
}