Q135
What does the following function do for a given Linked List with first node as head? void fun1(struct node* head) if(head == NULL) return; fun1(head->next); printf("%d ", head->data);
A.
Prints all nodes of linked lists
B.
Prints all nodes of linked list in reverse order
AnswerC.
Prints alternate nodes of Linked List
D.
Prints alternate nodes in reverse order
Answer: Option B
Solution
Answer: Option B
No explanation is given for this question Let's Discuss on Board