MCQOPTIONS
Saved Bookmarks
| 1. |
What is the base case for the following code? |
| A. | Return |
| B. | Printf( %d , n) |
| C. | If(n == 0) |
| D. | My_recursive_function(n-1) |
| Answer» D. My_recursive_function(n-1) | |