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 below code? |
| A. | temp > min_num |
| B. | val > min_min |
| C. | temp->val < min_num |
| D. | temp->val > min_num |
| Answer» D. temp->val > min_num | |