Can recursive program be written in C++?


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

Post New Answer

More C++ General Interview Questions

How can you force instantiation of a template?

1 Answers   ABC, Amazon,


Is c++ a good first language to learn?

0 Answers  


How to defines the function in c++?

0 Answers  


What is double in c++?

0 Answers  


Write a note about the virtual member function?

0 Answers  






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

0 Answers  


What is dynamic and static typing?

0 Answers  


In int main(int argc, char *argv[]) what is argv[0] a) The first argument passed into the program b) The program name c) You can't define main like that

0 Answers  


difference between c and c++?

38 Answers   Cognizant, IBM, Infosys, Oracle, Sarva Shiksha Abhiyan, Wipro,


What is a flag in c++?

0 Answers  


What you know about structures in C++?

0 Answers   Agilent, ZS Associates,


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,


Categories