I want to delete a node at the tail of the linked list, kindly check my code , it is not working ?
Deletion in linked lists doubt
to delete node from last use this code
node*tail=head;
while(tail->next&&tail->next->next){
tail=tail->next;
}
node*del=tail-next;
delete del;
tail->next=NULL;
if you want that i will check your code
then plz send complete code so i can run your code and see what is happenning
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.