Can recursive program be written in C++?
How can you force instantiation of a template?
Is c++ a good first language to learn?
How to defines the function in c++?
What is double in c++?
Write a note about the virtual member function?
Give an example of run-time polymorphism/virtual functions.
What is dynamic and static typing?
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
difference between c and c++?
38 Answers Cognizant, IBM, Infosys, Oracle, Sarva Shiksha Abhiyan, Wipro,
What is a flag in c++?
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