• 2022-06-04
    What
    is the condition that a single linked list with a header node is not
    empty ?Suppose the head pointer of the linked list is first. ()
    A: first
    == NULL
    B: first->link
    == NULL
    C: first->link
    == first
    D: first->link
    == link