有如下定义: struct number { int a; char b; } num; 则sizeof(num)的值是______。
举一反三
- 有如下定义: struct student { int num; char name[20]; int age; }; struct student stu[30]; 下面输入语句正确的是()
- 以下变量定义,错误的是: 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
- 有如下定义:struct{int num;char name[10];...以下对内嵌结构体成员的引用形式错误的是
- 下列结构体的定义正确的是( )。 A: student { int num; char name[10]; char sex; }; B: struct student { int num; char name[10]; char sex; } C: struct student { int num; char name[10]; char sex; }; D: struct student { int num char name[10] char sex };
- 定义了如下结构体数组: struct Number { int a; int b; } num[2]={1,2,3,4}; 语句printf('%d', num[1].a*num[1].b);的输出结果是_________。