Sabari while (temp != NULL) { temp = temp->next; count++; } —> results in infinite loop right? Log in to Reply
while (temp != NULL)
{
temp = temp->next;
count++;
}
—> results in infinite loop right?