注意:此页面搜索的是所有试题
题目内容
(兰州交通大学-C语言成语涉及)
若有以下结构体,则正确的定义或引用的是( )。
struct Test
{ int x;
int y;
} vl;
得分/总分
A.
Test v2;
v2.x=10;
2.00/2.00
B.
struct Test v2={10};
C.
struct v2;
v2.x=10;
D.
Test.x=10;
struct Test
{ int x;
int y;
} vl;
得分/总分
A.
Test v2;
v2.x=10;
2.00/2.00
B.
struct Test v2={10};
C.
struct v2;
v2.x=10;
D.
Test.x=10;
参考答案

