【填空题】如有以下定义和语句,则sizeof(a) = (),sizeof(b) = ()。 struct { int day; char month; int year;}a,*b;
举一反三
- 定义如下结构体,则表达式sizeof(stu1)的值是( )。 struct student { char name[8]; int age; struct { int year; int month; int day; } birth; } stu1; A: 15 B: 24 C: 10 D: 13
- 有定义语句struct man{ char name[10]; int age; float x;} w;则sizeof(int)的值为 ,sizeof(struct man)的值为 ,sizeof(w)的值为
- 有如下定义: struct number { int a; char b; } num; 则sizeof(num)的值是______。
- 以下程序运行的结果是 ( ) 。 #include ” stdio.h ” main() { struct date { int year , month , day ; } today ; printf( “ %d\n ” ,sizeof(struct date)); }
- 以下结构体数组定义,不正确的是______。 A: struct date{ int year; int month; int day;}date1[10],date2[10]; B: struct{ int year; int month; int day;}date1[10],date2[10]; C: struct date{ int year; int month; int day;}; ..... struct datedate1[10],date2[10]; D: struct datedate1[10],date2[10];.....struct date{ int year; int month; int day;};