in the video,in the recursive function of this code, sir has initialised node*c but after each recursive call it will be initialised again and again the how come the answer is correct?
Merge two linked list
Hello @sktg99,
Each initialization will be a local pointer variable for that particular recursive function call.
Hope, this will help.