1.

Select the set of operations to delete the first node from a linked list

A. p=head;head=head->next;free(p);
B. free(head)
C. head=head->next;p=head;free(p)
D. none of these
Answer» B. free(head)


Discussion

No Comment Found