数据结构里,定义名称为plan结构体,其有5个元素的结构体数组的定义方式是()。A、struct plan数组名[5];B、struct plan数组名[10];C、plan struct数组名[5];D、plan数组名[5];
数据结构里,定义名称为plan结构体,其有5个元素的结构体数组的定义方式是()。
- A、struct plan数组名[5];
- B、struct plan数组名[10];
- C、plan struct数组名[5];
- D、plan数组名[5];
相关考题:
数据结构里,定义名称为plan结构体,定义了名为arr的该类型的数组共5个元素,plan结构体有个成员变量叫time类型是字符数组,则应用该数组第二个元素的time的方式是()。A、arr[1].planB、arr[2].planC、arr[1].timeD、arr[2].time
数据结构里,定义名称为plan结构体,plan结构体有个成员变量叫time类型是字符数组,定义了prior是plan类型的指针变量,如何引用prior的time成员()。A、prior-timeB、prior.timeC、prior.time[0]D、prior-time[0]
单选题数据结构里,已知product是结构体类型,下列选项中是定义含有十个元素是该类型的数组格式正确的是()。Astructproducta[10];Bstructproducta{10};Cstructproducta10;Dstructproducta(10);
单选题数据结构里,定义名称为plan结构体,其有5个元素的结构体数组的定义方式是()。Astruct plan数组名[5];Bstruct plan数组名[10];Cplan struct数组名[5];Dplan数组名[5];
单选题数据结构里,定义名称为plan结构体,plan结构体有个成员变量叫time类型是字符数组,定义了prior是plan类型的指针变量,如何引用prior的time成员()。Aprior-timeBprior.timeCprior.time[0]Dprior-time[0]
多选题数据结构里,下列选项中是定义结构体类型的指针变量的格式不正确的是()。Astruct结构名指针变量名Bstruct结构名变量名Cstatic结构名指针变量名Dstruct指针变量名结构名
判断题数据结构与算法里,可以使用两个下标定义的数组,称为二维数组。A对B错