Computer Science, asked by sairohith7995, 2 months ago

What is the output of following function for head
pointing to first node of following linked list?
66->55-44-33->22->11
void function(struct node* head)
{
if head==NULL)
retum
printf("%d', head->data);
if(head->next !=NULL)
function(head->next->next);
printf("%d", head->data):
Options
66 55 44 33 22 11
O 11 22 33 44 55 66
0 66 44 22​

Answers

Answered by Anonymous
0

Answer:

ddddddddddddddddddddddddddddddsw

Similar questions