Multiple Choice
What is the purpose of the following code? current = head;
While (current != NULL)
{
//Process current
Current = current->link;
}
A) Insertion of a node
B) Selection of a node
C) Traversal of a linked list
D) Creation of a new list
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q1: When building a linked list in the
Q5: When you build a linked list in
Q12: The _ deallocates the memory occupied by
Q18: A linked list is a collection of
Q20: In a circular linked list with more
Q20: A linked list is a random access
Q22: Every node in a doubly linked list
Q23: Each node of a linked list must
Q24: The link field of the last node
Q27: A doubly linked list can be traversed