以下程序的输出结果是(   )。 #include<stdio.h></stdio.h> #include<stdlib.h></stdlib.h>  typedef struct node  {int data; struct node next;  }Node;Node list[4]={{4,&list[1]},{3,&list[2]},{2,&list[3]},{1,0}}; void output(Node head) { Node *p=head;   while(p!=NULL){ printf("%d",p->data);  p=p->next; }}void main() {output(list);  }

  • A、1 2 3 4  
  • B、4 3 2 1
  • C、3 2 1 4
  • D、2 1 3 4

答案:

请联系我 商务合作、广告投放、题目勘误、侵权投诉

评论列表 共有 0 条评论

暂无评论
立即
投稿
发表
评论
返回
顶部