What is the output of following function where start pointin…
What is the output of following function where start pointing to first node of following linked list? 1->2->3->4->5->6 void fun (Node start) { if(start == NULL) return; System.out.println(start.data); if(start->next != NULL ) fun(start->next->next); System.out.println(start.data); }
Read Details