日新
6
公司 :杭州神话信息技术有限公司
部门 :运营中心设计部
岗位 :UI视觉设计
5
关注
18
粉丝
16171
微博
2
被赞
新浪微博
原创达人
[个人/站长]
点击申请认证
友情链接:
找感兴趣的人
精彩内容
热门应用
关于我们
手机玩微博
#include
struct node
{int data; struct node *next;};
typedef struct node NODETYPE;
main()
{NODETYPE a,b,c,*h,*p;
a. data=10;b.data=20;c.data=30;h=&a;
b. next=&b;b.next=&c;c.next=’\0’;
p=h;
while(p){printf(“&d”,p->data);【15】;}
}
正确答案:(15)p=p—>next