• 2021-04-14
    若已经定义 typedef struct stu { int a, b; } student ; 则下列叙述中正确的是(
  • student 是结构体类型

    内容

    • 0

      以下结构体的定义语句中,正确的是______。? 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;

    • 1

      若已经定义: struct stu { int a, b; } student ; 则下列输入语句中正确的是( ) A: scanf("%d",&a); B: scanf("%d",&student); C: scanf("%d",&stu.a); D: scanf("%d",&student.a);

    • 2

      ‍若已经定义struct stu { int a, b; } student ; 则下列输入语句中正确的是 。‎ A: scanf("%d",&a); B: scanf("%d",&student); C: scanf("%d",&stu.a); D: scanf("%d",&student.a);

    • 3

      若有以下定义和语句: struct student {int num ;int age;}; struct student stu[3]={{l001,20},{1002,19},{1003,2l}}; main() {struct student *p;p=stu; ... } 则下列引用中不正确的是

    • 4

      对下面说明叙述正确的是______ typedef struct stu { int n;char ch[8]; }student; A: student是结构体类型名 B: student是结构体变量 C: typedef struct是结构体类型 D: struct是结构体类型名