结构体指针数组的一些问题希望详解_百度知道
结构体指针数组的一些问题希望详解Student *students[10];这时students[0] 到students[9] 这10个元素都是Student*类型的指针,但这10个指针变量都没有指定具体的...
关于C++结构体、数组还有指针的问题 - ITeye问答
关于C++结构体、数组还有指针的问题5 1.char test[20]="xxxxx";编译是不会出错的。 2.struct student { int num; char name[20]; float score[3]; ...