please tell why my code is not giving the correct output
Please tell why my code is not giving the correct output and help
@harryson You are not checking the condition when head is NULL in insert at tail in function.
Second you are wrongly inserting the element. Correct lines are
n->next=temp->next;
temp->next=n;
If this resolves your doubt mark it as resolved
I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.
On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.