Cognizant Coding Question- 4

One comment on “Cognizant Coding Question- 4”


  • Sabari

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