题目详情
单选题 以下程序的输出是( )struct Student { char name[20]; int fScore[3];}student = {"stu",98.5,89.0,93.5}; void Display(struct Student *pStruct){ printf("Name:%s ",pStruct->name); printf("Score:%d ",(*pStruct).fScore[0]);}int main (){ Display(&student); return 0;}

学科:C/C++程序设计
时间:2024-06-04 18:42:09
