What return value must conversion operators have in their declaration?
No Answer is Posted For this Question
Be the First to Post Answer
Where the memory to the static variables is allocated?
What is ctime c++?
What is size of Empty Class?
What do you understand by zombie objects in c++?
How to reduce a final size of executable?
How do you master coding?
What do you mean by stack unwinding in c++?
Give the difference between the type casting and automatic type conversion. Also tell a suitable C++ code to illustrate both.
Explain the concept of memory leak?
How many pointers are required to reverse a link list?
What is a mutable member?
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