题目内容
1.有以下程序#include#includestruct node{int num;struct node *next;};int 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=10; q->num=20; r->num=30; p->next=q;q->next=r;printf("%d\n",p->num+p->next->num);return 0;}程序运行后的输出结果是( )。
查看答案
搜索结果不匹配?点我反馈
更多问题