有3个学生信息,学号,姓名,成绩如下:(101,Liu,78) (102,wang,95) (103,Ji,74),要求放在结构体数组中构体变量的指针输出全部学生的信息。请在程序的下划线处填入正确的内容,使程序得出正确结果。 #include<stdio . h> _ (1) _ { int num;
有3个学生的信息,放在结构体数组中,要求输出全部学生信息 #include<stdio.h>structStudent//声明结构体类型struct student{intnum;charname[20];charsex;intage; };structStudent stu[3]={{10101,"LiLin",'M',18},{10102,"ZhangFang",'M',19},{10104,"WangMing",'F',20}};//定义指向struct student结...