• 2021-04-14
    有如下定义:struct{int num;char name[10];...以下对内嵌结构体成员的引用形式错误的是
  • ps.birth.y

    内容

    • 0

      以下变量定义,错误的是: A: struct student{int num, char name[20];} s; B: struct {int num, char name[20];} s; C: struct student{int num, char name[20];}; struct student s; D: struct student{int num, char name[20];} ; student s

    • 1

      对结构体类型变量定义不正确的是( )。 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;

    • 2

      有如下定义 struct Employee { char name[12]; int age; char sex; } emp[10],*p=std; 以下语句错误的是________。 答

    • 3

      有如下定义: struct number { int a; char b; } num; 则sizeof(num)的值是______。

    • 4

      在如下结构体定义中,不正确的是()。 A: struct teacher{ int no; char name[10]; float salary;}; B: struct tea[20]{ int no; char name[10]; float salary;}; C: struct teacher{ int no; char name[10]; float salary; }tea; D: struct{ int no; char name[10]; float salary; }tea;