题目内容
有程序如下定义,输出结果为____。struct NODE{ char num;struct NODE *next;};void main( ){ struct NODE *p,*q,*r;p=(struct NODE *)malloc(sizeof(struct NODE));q=(struct NODE *)malloc(sizeof(struct NODE));r=(struct NODE *)malloc(sizeof(struct NODE));p->num=a; q->num=b; r->num=c;r->next=q;q->next=p;p->next=NULL;printf("%c\n",r->next->next->num);}
查看答案
搜索结果不匹配?点我反馈
更多问题