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



i want to know how to copy arrary without using any method or function. I have tried the below u..

Answer / jeremiah

It appears you are overwriting the value of m[a] with the
uninitialized version of n[a] (in .NET this will be
initialized to 0. So the output of your program will output
5 zeros instead of what you had input on the console.
Try changing your code to this (I formatted it slightly better):
-----------------------------------------------------------
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() );
// Don't overwrite m[a] here!
// m[a]=n[a];
n[a] = m[a];
}

for( b = 0; b <= 4; b++ )
{
Console.WriteLine( n[b] );
}
}
}
-----------------------------------------------------------

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C++ General Interview Questions

Why do we use setw in c++?

0 Answers  


Can a list of string be stored within a two dimensional array?

0 Answers  


We use library functions in the program, in what form they are provided to the program?

0 Answers  


Is sorted c++?

0 Answers  


Is arr and &arr are same expression for an array?

0 Answers  


What are the techniques you use for debugging?

1 Answers   Adtran,


Explain the isa and hasa class relationships. How would you implement each?

0 Answers  


what are Operators and explain with an example?

0 Answers  


Why is c++ is better than c?

0 Answers  


Eplain extern keyword?

0 Answers  


Mention the ways in which parameterized can be invoked.

0 Answers  


Difference between a copy constructor and an assignment operator.

0 Answers  


Categories