在如下结构定义中,不正确的是()。A.B.C.D.
在如下结构定义中,不正确的是()。
A.
B.
C.
D.
相关考题:
下列关于数据存储结构的叙述中,不正确的是( )。A.数据的存储结构是逻辑结构在计算机存储器中的实现B.数据的运算是在数据的存储结构实现的C.数据的存储结构即是数据在计算机内的物理结构D.数据运算是定义在数据的存储结构上的
若有如下定义,选项中不正确的语句是_________。 Structure MyStru Dim No as integer Dim Gender As Char End Structure Dim s(100) AS MyStruA.MyStru是结构变量B.s是结构数组C.s(0).No=1234是正确的赋值语句D.Gender是结构中的一个成员E.s(1)是数组中的一个元素
在如下结构体定义中,不正确的是 。A.struct student { long no; double score; };B.struct stud[20] { long no; double score; };C.struct student { long no; double score; }stud[20];D.struct { long no; double score; } stud[100];
有如下结构类型定义和变量声明: Structure Stru Dim No As Integer Dim Sex As Char End Structure 下列选项不正确的是___________。A.Sex是结构成员B.s是结构变量C.Stru是结构类型D.Stru是结构变量
1、在如下结构体定义中,不正确的是()。A.struct teacher { int no; char name[10]; float salary; };B.struct tea[20] { int no; char name[10]; float salary; };C.struct teacher { int no; char name[10]; float salary; }tea;D.struct { int no; char name[10]; float salary; }tea;
在如下结构体类型或变量的定义中,不正确的是 。A.struct student { long no; double score; };B.struct stud[20] { long no; double score; };C.struct student { long no; double score; }stud[20];D.struct { long no; double score; }stud[100];