酷影网 >> 考试资源 >> 计算机二级 >> 99年计算机等级二级笔试C语言真题

99年计算机等级二级笔试C语言真题

struct node

{ char data;

struct node * next;

};

.

.

.

_____18_____ creatlist( )

{ struct node * h,* s,* r; char ch;

h=(struct node *)malloc(sizeof(struct node));

r=h;

ch=getchar( );

{ s=(struct node *)malloc(sizeof(struct node));

s->data=____19____;

r->next=s; r=s;

ch=getchar( ); }

r->next=____20_____;

return h;

}


酷影网(ky530.com)转载请注明出处,http://www.ky530.com/ncre/02/99-NianJiSuanJiDengJiErJiBiShi-C-YuYanZhenDi-dpl1024.html
关键词:


精华推荐
热门文章
最新文章