定义结构体的关键字是_______。
一个结构体变量所占用的空间是_______。
输出语句应该是:
struct person{
char name[9];
int age;
}
struct person class[4]={“John”, 17, “Paul”, 19, “Mary, 18, “adam”, 16 }
main(){
int i;
for ( i=0; i<4; i++)
printf (_______);
}
共用体变量所占内存长度等于_______。
在下列程序段中,枚举变量c1和c2的值分别是_______和_______。
main(){
enum color {red, yellow, blue = 4, green, white} c1,c2;
c1 = yellow;
c2 = white;
printf(“%d, %d\n”, c1, c2);
}