Solved

What Is the Purpose of the Following Code? Current =

Question 21

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:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions