Q.

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» A. p=head;head=head->next;free(p);
2.9k
0
Do you find this helpful?
11

Discussion

No comments yet

Related MCQs