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


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

Post New Answer

More C++ General Interview Questions

What is main function in c++ with example?

0 Answers  


Explain the operation of overloading of an assignment operator.

0 Answers  


What do you mean by translation unit in c++?

1 Answers  


i want to know how to copy arrary without using any method or function. I have tried the below using System; class e4 { static void Main(string[] args) { int a,b; int[ ] m= new int[5]; int[ ] n= new int[5]; for(a=0;a<=4;a++) { Console.WriteLine("enter any value"); m[a]=Convert.ToInt32(Console.ReadLine()); m[a]=n[a]; } for(b=0;b<=4;b++) { Console.WriteLine(n[b]); } } } but it will give wrong result can anyone solve this problem

1 Answers   Reliance,


What is the difference between c++ and turbo c++?

0 Answers  


Why seem interrupt handlers as member functions to be impossible?

1 Answers  


Define a pdb file.

0 Answers  


How can you quickly find the number of elements stored in a dynamic array?

0 Answers  


What is a pointer how and when is it used?

0 Answers  


Define the operators that can be used with a pointer.

0 Answers  


What is the use of the this pointer?

3 Answers  


Is it possible to provide default values while overloading a binary operator?

0 Answers  


Categories