下面程序执行后的输出结果是()。#include#includestructNODE{intnum;structNODE*next;};intmain(){structNODE*p,*q,*r;p=(structNODE*)malloc(sizeof(structNODE));q=(structNODE*)malloc(sizeof(structNODE));r=(structNODE*)malloc(sizeof(structNODE));p->num=10;q->num=20;r->num=30;p->next=q;q->next=r;printf("%d",p->num+q->next->num);return0;}