itgle.com
参考答案和解析
正确答案:D
解析:考查对结构体成员的引用方法。结构体成员的引用可以用"结构体变量名.成员名"或者"结构体变量指针->成员名"两种方式来引用。
更多“若有以下定义的语句 struct student { int age; int num; }; struct student stu[3]={{1001,20}, ”相关问题
  • 第1题:

    阅读下列XML文档,回答问题1至问题4,将解答填入对应栏内。

    【XML文档】

    <? Xml version= "1.0" encoding=" GB2312 "?>

    <!—以下是文档的主体部分→

    <college>

    <title>希赛教育</title>

    <head>软考培训部</Head>

    <Stu_Num unit="人">2</Stu_Num>

    <Student>

    <Name>张网管</Name>

    <Age>21 </Age>

    <Sex>男</Sex>

    <Class>软考2班</Class>

    </Student>

    <Student>

    <Name>李软设</Name>

    <Age>20</Age>

    <Sex>女</Sex>

    <Class>软考3班</Class>

    </Student>

    </College>

    与HTML相比,XML具有哪些特点?


    正确答案:与HTML相比XML主要有以下特点。 (1)XML是元标记语言。 (2)XML描述的是结构和语义。 (3)XML文档的显示使用特有的技术来支持。
    与HTML相比,XML主要有以下特点。 (1)XML是元标记语言。 (2)XML描述的是结构和语义。 (3)XML文档的显示使用特有的技术来支持。

  • 第2题:

    【单选题】以下结构体的定义语句中,正确的是______。

    A.struct student {intnum; char name[10];int age;};stu;

    B.struct {int num;char name[10];int age;}student; struct studentstu;

    C.struct student {int num; char name[10];int age;}stu;

    D.struct student {int num; char name[10]; int age;}; student stu;


    struct student {int nmu; char name[10]; int age;} stu;

  • 第3题:

    以下结构体的定义语句中,正确的是______。

    A.struct student {int num; char name[10];int age;};stu;

    B.struct {int num; char name[10];int age;}student; struct student stu;

    C.struct student {int num; char name[10];int age;}stu;

    D.struct student {int num; char name[10]; int age;}; student stu;


    struct student {int nmu; char name[10]; int age;} stu;

  • 第4题:

    有以下的结构体变量定义语句: struct student { int num; charname[9]; } stu; 则下列叙述中错误的是()。

    A.结构体类型名为stu

    B.num是结构体成员名

    C.struct是C的关键字

    D.结构体名为student


    B

  • 第5题:

    有以下的结构体变量定义语句: struct student { int num; charname[9]; } stu; 则下列叙述中错误的是()。

    A.结构体类型名为stu

    B.num是结构体成员名

    C.struct是C的关键字

    D.结构体类型名为student


    B