单项选择题有以下程序 main() { char a,b,c,d; seanf( %c,%c,%d,%d ,&a,&b,&c,&d) ; printf( %c,%c,%c,%c n ,a,b,c,d) ; } 若运行时从键盘上输入:6,5,65,66<回车>。则输出结果是
单项选择题有以下说明和定义语句 struct student { int age;char num[8]; struct student stu[3]={{20, 200401 },{21, 200402 },{19, 200403 }}; struct student *p=stu;}; 以下选项中引用结构体变量成员的表达式错误的是