A、struct ord{int x;int Y;int Z;};struet ord a;
B、struct ord{int x;int y;int Z;}struct ord a;
C、struct ord{int X;int Y;int Z;}a;
D、struct{int X;int y;int Z;}a;
查看答案
正确答案
试题解析
结构体定义的类型说明的一般形式为:struct结构体标识名{类型名1结构成员名表l;类型名2结构成员名表2;···};。注意:①结构体说明同样要以分号结尾;②紧跟在结构体类型说明之后进行定义;③在说明一个无名结构体类型的同时,直接进行定义;④先说明结构体类型,再单独进行变量定义等。所以B选项错误。