If this function returns true, this function also returns:
```
1 bool search( Node
2 {
3 if ( ptr == NULL )
4 return false;
5 if ( ptr->info == dove ) {
6 bird = ptr->info;
7 return true;
8 }
9 return search( ptr->next, bird, dove );
10 }
```
which is called for a linked list (where start points to the first node) using the lines of code:
```
if ( search( start, bird, dove ) )
cout << “search successful” << endl;
```
A. the other Bird information for the first node that does not contain dove
B. a pointer to the Bird node that contains dove
C. the other Bird information for the node that contains dove
D. a pointer to NULL
1
You might also like to view...
A Recent Pages list will show all your locations during the past week
Indicate whether the statement is true or false
The .gov, .com, .net, and .edu extensions are examples of ________.
A. emoticons B. FAQs C. top-level domains D. URLs