

MCQOPTIONS
Saved Bookmarks
1. |
Consider the following code snippet to search an element in a linked list:Which of the following lines should be inserted to complete the below code? |
A. | temp = next |
B. | temp->next = temp |
C. | temp = temp->next |
D. | return 0 |
Answer» D. return 0 | |