MCQOPTIONS
Saved Bookmarks
| 1. |
Consider the following code snippet to find the smallest element in a linked list: Which of the following lines should be inserted to complete the above code? |
| A. | temp > min_num |
| B. | val > min_min |
| C. | temp->val < min_num |
| D. | temp->val > min_numView Answer |
| Answer» D. temp->val > min_numView Answer | |