Comments on: Delete a linked list https://demo.ritambhara.in/delete-a-linked-list/ Coding / System Design Interviews Mon, 03 Jun 2013 06:30:33 +0000 hourly 1 https://wordpress.org/?v=6.8.2 By: vvsnmurthy.vatturi https://demo.ritambhara.in/delete-a-linked-list/#comment-1718 Mon, 03 Jun 2013 06:30:33 +0000 http://www.ritambhara.in/?p=333#comment-1718 small correction in recursive function
void deleteList( Node ** head)
{
if(*head != NULL)
{
Node * temp = *head;
*head = (*head)->link;
deleteList(head);
free(temp);
}
}

]]>