Can a built-in function be recursive?


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

Post New Answer

More C++ General Interview Questions

Can we use clrscr in c++?

0 Answers  


What are the new features that iso/ansi c++ has added to original c++ specifications?

0 Answers  


In which header file does one find isalpha() a) conio.h b) stdio.h c) ctype.h

0 Answers  


class base { public: int fun(int) {} }; class base2 { public: int fun(float) { } }; so here qustion is both function either function overloading or over riding;

4 Answers   Manhattan,


structure that describe a hotel with name, address,rooms and number of rooms

2 Answers  






Do class method definitions?

0 Answers  


What are templates? where we should use it?

2 Answers   Alcatel,


what are prototypes

4 Answers   Infosys, TCS,


Write about the scope resolution operator?

0 Answers  


Is c++ primer good for beginners?

0 Answers  


How would perform Pattern Matching in C++?

0 Answers   Genpact,


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,


Categories