Question: answer please What is the output of following function? assuming following linked list, head is pointing to the first node 1->2->3->4->5->6 void fun (LinkedList head)
answer please
What is the output of following function? assuming following linked list, head is pointing to the first node 1->2->3->4->5->6 void fun (LinkedList head) { Node current = head; System.out.printf (current.data); while (current.next != NULL) { current current.next.next; System.out.printf(current.data); } } 1246 123456 135 136
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
