• 2022-06-16
    若已定义: struct student {int num; char sex; int age; }stu1; 叙述错误的是( )
    A: stu1是结构类型名
    B: num,sex,age都是结构变量stu1的成员
    C: stu1是用户定义的结构类型变量名
    D: struct student是结构类型名
  • A
    本题目来自[网课答案]本页地址:https://www.wkda.cn/ask/mexpptpapetepjo.html

    举一反三

    内容

    • 0

      中国大学MOOC: 以下对结构变量stu1中成员age的非法引用是( )struct student{ int age; int num;};struct student stu1, *p;p=&stu1;

    • 1

      struct student{ int num;char name[10];float score;}stu;则下面的叙述不正确的是 ( ) A: struct是结构体类型的关键字 B: struct student 是用户定义的结构体类型 C: num, score都是结构体成员名 D: stu是用户定义的结构体类型名

    • 2

      以下对结构变量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

    • 3

      ‎以下对结构变量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

    • 4

      对结构体类型变量定义不正确的是( )。 A: B: define STUDENT struct studentSTUDENT{char name;int num;}std; C: struct student{char name;int num;}stu; D: E: define struct student{char name;int num;}STD;STD stu; F: struct{char name;int num;}student;struct student stu;