题目内容

已知学生记录描述为:设变量s中的生日应该是“1984年11月11日”,下列对生日的正确赋值是()。

A. year=1984;month=11;day=11;
B. birth.year=1984;birth.month=11;birth.day=11;
C. s.year=1984;s.month=11;s.day=11;
D. s.birth.year=1984;s.birth.month=11;s.birth.day=11;

查看答案
更多问题

以下程序的输出结果是( )。

A. 10,20,20
B. 50,60,21
C. 51,60,21
D. 60,70,31

以下程序的输出结果是( )。

A. 12
B. 23
C. 14
D. 32

若整型变量占两个字节,struct s{ int x; float f; }a[3]; 语句printf("%d",sizeof(a))的输出结果为【】。

A. 4
B. 6
C. 12
D. 18

以下程序段的功能是:输入一行字符,按输入的逆序建立一个链表。char c;struct node{char info;struct node *link;} *top, *p;top = NULL;while ( (c = getchar() ) != '\n'){p = (struct node*) malloc(sizeof(struct node));p->info = c;_________ ;top = p;}

A. top->link = p
B. p->link = top
C. top = p->link
D. p = top->link

答案查题题库