数据结构里,定义名称为plan结构体,定义了名为arr的该类型的数组共5个元素,plan结构体有个成员变量叫time类型是字符数组,则应用该数组第二个元素的time的方式是()。A、arr[1].planB、arr[2].planC、arr[1].timeD、arr[2].time
数据结构里,定义名称为plan结构体,定义了名为arr的该类型的数组共5个元素,plan结构体有个成员变量叫time类型是字符数组,则应用该数组第二个元素的time的方式是()。
- A、arr[1].plan
- B、arr[2].plan
- C、arr[1].time
- D、arr[2].time
相关考题:
设有以下说明语句struct stu{int a;float b;} stutype;则下面的叙述不正确的是A.struct是结构体类型的关键字B.struct stu是用户定义的结构体类型C.stutype是用户定义的结构体类型名D.a和b都是结构体成员名
设有以下说明语句: struct stu { int a; float b; }stutype; 则下面叙述不正确的是( )。A.struct是结构体类型的关键字B.structstu是用户定义的结构体类型C.stutype是用户定义的结构体类型名D.a和b都是结构体成员名
若有以下说明语句:structstudent{intnum;charname[];floatscore;}stu;则下面的叙述不正确的是:()A、struct是结构体类型的关键字B、structstudent是用户定义的结构体类型C、num,score都是结构体成员名D、stu是用户定义的结构体类型名
数据结构里,定义名称为plan结构体,其有5个元素的结构体数组的定义方式是()。A、struct plan数组名[5];B、struct plan数组名[10];C、plan struct数组名[5];D、plan数组名[5];
设有以下说明语句:structstu {int a;floatb;}s;下面的叙述不正确的是()A、struct是结构体类型的关键字B、structstu是用户定义的结构体类型C、s是用户定义的结构体类型名D、a和b都是结构体成员名
数据结构里,定义名称为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]
单选题假定已经定义了一个名为arr_type的PL/SQL表类型,那么怎样实例化一个arr_type类型的变量()Av_arr arr_type;Bv_arr is arr_type;Cv_arr of arr_type;Dv_arr arr_type%type;
多选题数据结构里,下列选项中是定义结构体类型的指针变量的格式不正确的是()。Astruct结构名指针变量名Bstruct结构名变量名Cstatic结构名指针变量名Dstruct指针变量名结构名
单选题数据结构里,定义名称为plan结构体,定义了名为arr的该类型的数组共5个元素,plan结构体有个成员变量叫time类型是字符数组,则应用该数组第二个元素的time的方式是()。Aarr[1].planBarr[2].planCarr[1].timeDarr[2].time