Assume that the search function of a linked list is specifie
Assume that the search function of a linked list is specified by struct Terminal* search(); What values can the search function return? Select all correct answers. 0 the name stored in the terminal node in the linked list the address of a terminal node the terminal node itself
Solution
The Correct Answers are
1) 0. Since when no Element is Found it will return 0.
3) The Address of a terminal Node will be returned that matches the value
