4. What is the output of following function for start pointing to first node of following linked list? 1->2->3->4->5->6 void fun(struct node* start) { if(start == NULL) return; printf("%d ",...


4. What is the output of following function for<br>start pointing to first node of following linked<br>list?<br>1->2->3->4->5->6<br>void fun(struct node* start) {<br>if(start == NULL) return;<br>printf(data); if(start->next != NULL ) fun(start->next->next); printf("%d ", start->data); } %3D O 135531 O 1235 O 1466 4 1 135135 "/>
Extracted text: 4. What is the output of following function for start pointing to first node of following linked list? 1->2->3->4->5->6 void fun(struct node* start) { if(start == NULL) return; printf("%d ", start->data); if(start->next != NULL ) fun(start->next->next); printf("%d ", start->data); } %3D O 135531 O 1235 O 1466 4 1 135135

Jun 11, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here