主题:菜鸟请教,很急
struct student{
char num[20];
char name[20];
float score[3];
float zongfen;
struct student *next;
};
假如在结构体成员 float score[3】中
我想在 float score[0]中放英语分数,在 float score[1]中放数学分数
那我用指针怎样指向它呢?这样可以吗 :P->SCORE[0]
char num[20];
char name[20];
float score[3];
float zongfen;
struct student *next;
};
假如在结构体成员 float score[3】中
我想在 float score[0]中放英语分数,在 float score[1]中放数学分数
那我用指针怎样指向它呢?这样可以吗 :P->SCORE[0]