柠檬试题库
search
首页 计算机 公务员 驾照 关于

下面结构体的定义语句中,错误的是(  )。


  • A.struct ord {int x;int y;int z;} struct 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;
热度🔥734
参考答案:A
解析:

【解析】A)选项struct ord {int x;int y;int z;} struct ord a;错误,不能在定义结构体的同时,又用结构体类型名定义变量。应该写成B)选项或者D)选项的格式。
复制题目向AI提问