How do you delete a node from a linked list, given only a pointer to that node?
A. Update the head pointer
B. Update the tail pointer
C. Copy the data from the next node to the current node and delete the next node
D. You cannot delete the node
Answer: Option C
Join The Discussion