C语言结构体数组的初始化赋值可以通过以下两种方式进行: 逐个赋值:可以使用逐个赋值的方式给结构体数组的每个元素进行赋值,例如: struct Student { char name[20]; int age; }; int main() { struct Student students[3]; strcpy(students[0].name, "Tom"); students[0].age = 18; strcpy(students[1]....
for (int i=0; i<3; i++){ scanf("%d", &(stu[i].num));fflush(stdin);scanf("%s", stu[i].name);scanf(" %c", &(stu[i].sex)); //%c前一定要有空格 scanf("%d", &(stu[i].age));for (int j=0; j<3; j++)scanf("%f", &(stu[i].score[j]));scanf("%d...