• 2022-06-08 问题

    下列选项中不能够定义一个结构体类型变量stu的是 。 A: struct student { int num; int age; } stu; B: struct student { int num; int age; }; student stu; C: struct {int num; int age; } stu; D: struct student {int num; int age; }; struct student stu;

    下列选项中不能够定义一个结构体类型变量stu的是 。 A: struct student { int num; int age; } stu; B: struct student { int num; int age; }; student stu; C: struct {int num; int age; } stu; D: struct student {int num; int age; }; struct student stu;

  • 2022-06-19 问题

    加入需要给stu表删除一个字段age,下列哪个正确 A: alter table stu drop age; B: drop table age C: drop table drop age;

    加入需要给stu表删除一个字段age,下列哪个正确 A: alter table stu drop age; B: drop table age C: drop table drop age;

  • 2022-06-16 问题

    以下对结构体变量stu成员age的非法引用是( )。 struct<br/>student {<br/>int num;<br/>int age; }; struct<br/>student stu,*p=&amp;stu; A: stu.age B: (*p).age C: student.age D: p-&gt;age

    以下对结构体变量stu成员age的非法引用是( )。 struct<br/>student {<br/>int num;<br/>int age; }; struct<br/>student stu,*p=&amp;stu; A: stu.age B: (*p).age C: student.age D: p-&gt;age

  • 2021-04-14 问题

    以下结构体的定义语句中,正确的是______。? struct student {int num; char name[10];int age;}stu;|struct {int num; char name[10];int age;}student; struct student stu;|struct student {int num; char name[10]; int age;}; student stu;|struct student {int num; char name[10];int age;};stu;

    以下结构体的定义语句中,正确的是______。? struct student {int num; char name[10];int age;}stu;|struct {int num; char name[10];int age;}student; struct student stu;|struct student {int num; char name[10]; int age;}; student stu;|struct student {int num; char name[10];int age;};stu;

  • 2022-06-16 问题

    若有定义:struct student{ int age; int num;};struct student stu,*p;则以下正确的赋值语句是()。 A: p=stu; B: *p=*stu; C: *p=&stu; D: p=&stu;

    若有定义:struct student{ int age; int num;};struct student stu,*p;则以下正确的赋值语句是()。 A: p=stu; B: *p=*stu; C: *p=&stu; D: p=&stu;

  • 2022-06-09 问题

    创建数据库表,下列语句中正确的是()。 A: create table stu(no integer, name text, sex text, age integer) B: table stu(no integer, name text, sex text, age integer) C: create stu(no integer, name text, sex text, age integer) D: 以上都不对

    创建数据库表,下列语句中正确的是()。 A: create table stu(no integer, name text, sex text, age integer) B: table stu(no integer, name text, sex text, age integer) C: create stu(no integer, name text, sex text, age integer) D: 以上都不对

  • 2022-06-17 问题

    对以下定义,能输出字符串"Mary"的语句是( )。struct student { char name&#91;20&#93;; int age; }; struct student stu&#91;100&#93;={"John",16,"Paul",17,"Mary",18 }; A: printf("%s",stu[2].name); B: printf("%s",stu[1].name); C: printf("%s",stu[2]); D: printf("%s",stu[1]);

    对以下定义,能输出字符串"Mary"的语句是( )。struct student { char name&#91;20&#93;; int age; }; struct student stu&#91;100&#93;={"John",16,"Paul",17,"Mary",18 }; A: printf("%s",stu[2].name); B: printf("%s",stu[1].name); C: printf("%s",stu[2]); D: printf("%s",stu[1]);

  • 2021-04-14 问题

    根据下面的定义,能输出字符串&quot;Li&quot;的语句是()。struct person{char name[10];int age;};person stu[10]={&quot;Zhang&quot;,18,&quot;Li&quot;,17,&quot;Ma&quot;,18,&quot;Huang&quot;,18 };? cout&lt;&lt;;stu[1].name[0]&lt;&lt;endl;|cout&lt;&lt;;stu[2].name[0]&lt;&lt;endl;|cout&lt;&lt;;stu[1].name&lt;&lt;endl;|cout&lt;&lt;;stu[2].name&lt;&lt;endl;

    根据下面的定义,能输出字符串&quot;Li&quot;的语句是()。struct person{char name[10];int age;};person stu[10]={&quot;Zhang&quot;,18,&quot;Li&quot;,17,&quot;Ma&quot;,18,&quot;Huang&quot;,18 };? cout&lt;&lt;;stu[1].name[0]&lt;&lt;endl;|cout&lt;&lt;;stu[2].name[0]&lt;&lt;endl;|cout&lt;&lt;;stu[1].name&lt;&lt;endl;|cout&lt;&lt;;stu[2].name&lt;&lt;endl;

  • 2022-06-19 问题

    22. 以下对结构体类型变量的定义错误的是( )。 A: B: define STU struct student STU {float height; int age; }std1; C: struct student {float height; int age; }std1; D: struct {float height; int age; }std1; E: struct {float height; int age; }student; struct student std1;

    22. 以下对结构体类型变量的定义错误的是( )。 A: B: define STU struct student STU {float height; int age; }std1; C: struct student {float height; int age; }std1; D: struct {float height; int age; }std1; E: struct {float height; int age; }student; struct student std1;

  • 2022-06-16 问题

    有如下定义:struct student{ int num; char name&#91;20&#93;; int age;};struct student stu&#91;30&#93;;下面输入语句正确的是()。 A: scanf("%d",&amp;stu.age); B: scanf("%d",stu[0].age); C: scanf("%d",&amp;stu[0].age); D: scanf("%d",stu.age);

    有如下定义:struct student{ int num; char name&#91;20&#93;; int age;};struct student stu&#91;30&#93;;下面输入语句正确的是()。 A: scanf("%d",&amp;stu.age); B: scanf("%d",stu[0].age); C: scanf("%d",&amp;stu[0].age); D: scanf("%d",stu.age);

  • 1 2 3 4 5 6 7 8 9 10