返回主页
学习人数: 9.3k
stroke-dashoffset="47*2.6389" stroke-linecap="round" transform="rotate(-90 50 50)"/>
正确率: 47%
未通过

若有定义

struct node{

int data;

struct node *next;

};

及函数:

void fun(struct node *head)

{

struct node *p=head;

while(p)

{

   printf(“%d”,p->data);

   p=p->next;

   break;

}

}

则函数 fun( )的功能是(   )

A. 删除单向链表                 B. 显示单向链表中的所有数据

C. 显示单向链表中的第一个数据   D. 创建单向链表

上面问题的答案是:
A A 选项
B B 选项
C C 选项
D D 选项
回答区域
提示
提示内容

登录后提交答案


1 个回答 (点击展开回答)