A

Admin • 833.24K Points
Coach

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

No solution found for this question.
Add Solution and get +2 points.

You must be Logged in to update hint/solution

Discusssion

Login to discuss.

Be the first to start discuss.