题目内容

鳞茎植物的部分叶片变成肥厚多肉的片,着生在鳞茎盘上。

A. 对
B. 错

查看答案
更多问题

下列说明正确的是( )

A. typedef int INTEG; INTEG n, m;
B. typedef int char; char n, m;
C. typedef m[4] ARRAY; ARRAY n, m;
D. 以上都错误

根据下面的定义,能输出字母M的语句为( )。struct person{char name[9];int age;};struct person class[10]={{“John”,17},{“Paul”,19},{“Mary”,18}};

A. printf(“%c\n”,class[3].name);
B. printf(“%c\n”,class[3].name[1]);
C. printf(“%c\n”,class[2].name[1]);
D. printf(“%c\n”,class[2].name[0]);

以下程序的输出结果为( )。typedef union{long x[2];int y[4];char z[8];}TRY;TRY tr;int main( ){printf(“%d\n”, sizeof(tr));return 0;}

A. 4
B. 8
C. 16
D. 32

在下列程序段中,枚变量c1的值分别是()int main( ){enum color {red, yellow, blue, green, white} c1, c2;c1 = yellow;c2 = white;printf(“%d,%d\n”, c1);return 0;}

A. 1
B. 2
C. 3
D. 4

答案查题题库