c# code for how to merge two sorted arrays
Input : A = 2,5,8,4
B = 3,9,10,5
Output : 2,3,4,5,5,8,9,10
Answers were Sorted based on User's Feedback
Answer / m.shanmuga sundaram, rjnsoftwa
int[] A = {2,5,8,4};
int[] B = { 3, 9, 10, 5 };
int[] C = new int[A.Length + B.Length];
A.CopyTo(C, 0);
B.CopyTo(C, A.Length);
Array.Sort(C);
foreach (int num in C)
{
Console.WriteLine(num);
}
Is This Answer Correct ? | 8 Yes | 3 No |
Answer / m.shanmuga sundaram,rjnsoftwar
There is no requirement to do this in C#. If you ask this
for in C or C++, I can write for you or we can find umpteen
number of examples in internet.But C# has the built in,time
tested functions with proper error handling. Thanks.
Is This Answer Correct ? | 2 Yes | 0 No |
In which order the constructor is called for an inherited class?
What is mvc in c#?
how can one use hcl and c sharp together?
When can a derived class override a base class member?
What debugging tools come with the .NET ssSDK?
Explain a MSIL ? Why is it appreciated by all developers?
Why use “using” in c#?
How does the clr work?
What is an array class?
what is the difference between finally and dispose methods?
In a single .NET DLL how many classes it contains?
What is console based application?