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
0
Answer:
ddddddddddddddddddddddddddddddsw
Similar questions
Math,
2 months ago
Physics,
2 months ago
English,
4 months ago
English,
4 months ago
Computer Science,
10 months ago
Political Science,
10 months ago