A-A+

下列对结构及其变量定义错误的是()。A.struct My Struct { int num

2022-08-06 03:59:08 问答库 阅读 175 次

问题详情

下列对结构及其变量定义错误的是()。
A.struct My Struct { int num; char ch; }
B.struct MyStruct { int num; char ch; }My;
C.strut { int num; char ch; }My;
D.struct { int num; char ch; };请帮忙给出正确答案和分析,谢谢!

参考答案

正确答案:D

考点:变量,定义