

McqMate
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); |
View all MCQs in
Data Structure and Algorithms (DSA)No comments yet