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 below code?

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


Discussion

No Comment Found