adplus-dvertising
frame-decoration

Question

How many times is the function recursive_get_len() called when the following code is executed?
#include<stdio.h>
int recursive_get_len(char *s, int len)
{
      if(s[len] == 0)
        return 0;
      return 1 + recursive_get_len(s, len+1);
}
int main()
{
      char *s = "adghjkl";
      int len = recursive_get_len(s,0);
      printf("%d",len);
      return 0;
}

a.

6

b.

7

c.

8

d.

9

Answer: (c).8

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. How many times is the function recursive_get_len() called when the following code is executed?

Similar Questions

Discover Related MCQs

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 iterative implementation 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 largest and the smallest element in an array?

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 iterative code used to find the smallest and largest element in a linked list?

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

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

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. What is the time complexity of the above recursive implementation of linear search?

Q. Which of the following methods can be used to search an element in a linked list?

Q. What is the time complexity of the above implementation of linear search on a linked list?

Q. Can binary search be applied on a sorted linked list in O(Logn) time?

Q. What will be time complexity when binary search is applied on a linked list?