adplus-dvertising
frame-decoration

Question

What is the output of the following code?
#include<stdio.h>
int recursive_search_num(int *arr, int num, int idx, int len)
{
     if(idx == len)
     return -1;
     if(arr[idx] == num)
       return idx;
     return recursive_search_num(arr, num, idx+1, len);
}
int main()
{
      int arr[8] ={1,2,3,3,3,5,6,7},num=5,len = 8;
      int indx = recursive_search_num(arr,num,0,len);
      printf("Index of %d is %d",num,indx);
      return 0;
}

a.

Index of 5 is 5

b.

Index of 5 is 6

c.

Index of 5 is 7

d.

Index of 5 is 8

Answer: (a).Index of 5 is 5

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. What is the output of the following code?

Similar Questions

Discover Related MCQs

Q. Consider the array {1,1,1,1,1}:
Which of the following techniques can be used to search an element in the above array?

Q. Which of the following techniques can be used to search an element in an unsorted array?

Q. What is the time complexity of the recursive implementation used to find the largest and smallest element in a linked list?

Q. What is the time complexity of the above iterative code used to find the smallest and largest element in a linked list?

Q. Which of the following methods can be used to find the largest and smallest number in a linked list?

Q. What is the time complexity of the above recursive implementation used to find the largest and the smallest element in an array?

Q. What is the time complexity of the above iterative implementation used to find the largest and smallest element in an array?

Q. Which of the following methods can be used to find the largest and smallest element in an array?

Q. What is the time complexity of the above recursive implementation used to find the length of the string?

Q. Which of the following can be the base case for the recursive implementation used to find the length of a string?

Q. Which of the following can be the base case for the recursive implementation used to find the length of linked list?

Q. What is the time complexity of the above iterative implementation used to find the length of a linked list?

Q. What is the space complexity of the recursive implementation used to convert a decimal number to its binary equivalent?

Q. What is the time complexity of the recursive implementation used to convert a decimal number to its binary equivalent?

Q. Which of the following is the binary representation of 100?

Q. What can be the minimum sum of digits for a 4 digit number?

Q. What can be the maximum sum of digits for a 4 digit number?

Q. Which of the following methods can be used to find the sum of digits of a number?

Q. Which of the following methods used to find the sum of first n natural numbers has the least time complexity?

Q. What is the time complexity of the above recursive implementation used to find the sum of the first n natural numbers?