Write a program to find the Fibonacci series recursively.


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C++ General Interview Questions

Is set c++?

0 Answers  


Evaluate: int fn(int v) { if(v==1 || v==0) return 1; if(v%2==0) return fn(v/2)+2; else return fn(v-1)+3; } for fn(7); a) 10 b) 11 c) 1

4 Answers   Quark,


What is the Maximum Size that an Array can hold?

55 Answers   Adobe, FutureSoft, HCL, Infosys, Satyam, TCS, Wipro,


Explain what is polymorphism in c++?

0 Answers  


Is it possible to have a recursive inline function in c++?

0 Answers  


Difference between Top down and bottom up approaches for a given project ?

14 Answers   BSNL, CSC, HCL, HP, IIT, Infosys, Siemens,


what you know about c++?

0 Answers   IBS,


Which algorithm do you like the most? Why?

2 Answers   Google,


What is the difference between a copy constructor and an overloaded assignment operator?

4 Answers   Belzabar, Citrix, Microsoft, Wipro,


Give an example of run-time polymorphism/virtual functions.

0 Answers  


What is the default width for ouputting a long integer using the insertion operator?

0 Answers  


Are there interfaces in c++?

0 Answers  


Categories