1.

Consider the following code snippet to find the largest element in a linked list: Which of the following lines should be inserted to complete the above code?

A. temp->next != 0
B. temp != 0
C. head->next != 0
D. head != 0View Answer
Answer» C. head->next != 0


Discussion

No Comment Found