Vidyalelo
Data Structure · Q427

Miscellaneous on Data Structures

Programming · Data Structure · question 427

Q427

What is the output of the following code? int fibo(int n) if(n == 1) return 0; else if(n == 2) return 1; return fibo(n - 1) + fibo(n - 2); int main() int n = 10; int ans = fibo(n); printf("%d",ans); return 0;

A.
21
B.
34
Answer
C.
55
D.
13

Answer: Option B

Solution

Answer: Option B
No explanation is given for this question Let's Discuss on Board