Question: prev + curr numList head: tail: data: 55 next: data: 12 next: data: 74 next: null Order the following lines of code so that remove(12)

prev + curr numList head: tail: data: 55 next: data: 12 next: data: 74 next: null Order the following lines of code so that remove(12) works as expected: 1 curr->next = null; 2 prev->next = curr->next; 3 delete curr, OA2, 3,1 OB. 1, 2, 3 OC.3,2,1 OD.2, 1,3
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
