• 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

  • 2022-06-08 问题

    以下对结构体变量stu1中成员age的非法引用是( )。 A: stu1.age B: student.age C: p->;age D: (*p).age

    以下对结构体变量stu1中成员age的非法引用是( )。 A: stu1.age B: student.age C: p->;age D: (*p).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-11 问题

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

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

  • 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-16 问题

    以下对结构变量stu1中成员age的非法引用是( )struct student{ int age; int num;};struct student stu1, *p;p=&stu1; A: stu1.age B: student.age C: p->age D: (*p).age

    以下对结构变量stu1中成员age的非法引用是( )struct student{ int age; int num;};struct student stu1, *p;p=&stu1; A: stu1.age B: student.age C: p->age D: (*p).age

  • 2022-06-16 问题

    ‎以下对结构变量stu1中成员age的非法引用是( )‌‎struct student‌‎{‌‎ int age;‌‎ int num;‌‎};‌‎struct student stu1, *p;‌‎p=&stu1;‌‎‌ A: stu1.age B: student.age C: p->age D: (*p).age

    ‎以下对结构变量stu1中成员age的非法引用是( )‌‎struct student‌‎{‌‎ int age;‌‎ int num;‌‎};‌‎struct student stu1, *p;‌‎p=&stu1;‌‎‌ A: stu1.age B: student.age C: p->age D: (*p).age

  • 1 2 3 4 5 6 7 8 9 10