国家开放大学 / C语言程序设计
void QC(struct IntNode* f) { //f为一个单链表的表头指针
while(f) {
printf("%d ",f->data);
f=f->next;
}
}
假定结构类型IntNode的定义为:
struct IntNode {int data; struct IntNode *next;};
该函数的功能为:
while(f) {
printf("%d ",f->data);
f=f->next;
}
}
假定结构类型IntNode的定义为:
struct IntNode {int data; struct IntNode *next;};
该函数的功能为:
参考答案: