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 |
What does assemblyinfo.cs consists ?
When static constructor is invoked?
What is deferred execution in c#?
If a class derives from another class, will the derived class automatically contain all the public, protected, and internal members of the base class?
5. What properties we used to call stored procedure in C#?
What are the generation of Garbage Collection in C# .NET ?
Why linq is having select clause at the end?
What is byte c#?
How to include c++ header files in c# components?
Can abstract class be sealed in c#?
Enlist some of the properties of a thread class?
how many catch we can write in thye program?
Visual Basic (800)
C Sharp (3816)
ASP.NET (3180)
VB.NET (461)
COM+ (79)
ADO.NET (717)
IIS (369)
MTS (11)
Crystal Reports (81)
BizTalk (89)
Dot Net (2435)
Exchange Server (362)
SharePoint (720)
WCF (340)
MS Office Microsoft (6963)
LINQ Language-Integrated Query (317)
WPF (371)
TypeScript (144)
Microsoft Related AllOther (311)