3. What does the following function do for a given Linked List with first node as head? void fun1(struct node* head) { if(head fun1(head->next); printf("%d ", head->data); } NULL) return; == displays...


3. What does the following function do for a<br>given Linked List with first node as head?<br>void fun1(struct node* head)<br>{<br>if(head<br>fun1(head->next);<br>printf(data); } NULL) return; == displays all the nodes of the linked list displays alternate nodes of the linked list displays all the nodes of the linked list in reverse order displays alternate nodes of the linked list in reverse order "/>
Extracted text: 3. What does the following function do for a given Linked List with first node as head? void fun1(struct node* head) { if(head fun1(head->next); printf("%d ", head->data); } NULL) return; == displays all the nodes of the linked list displays alternate nodes of the linked list displays all the nodes of the linked list in reverse order displays alternate nodes of the linked list in reverse order

Jun 11, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here