"How will you merge these two arrays? Write the program
Array: A 1 18 22 43
Array: B 3 4 6 20 34 46 55
Output Array: C 1 3 4 6 18 20 22 34 43 46 55"
Answer Posted / arun
/*Program to merge two array & show them in shorted form */
#include<stdio.h>
#include<conio.h">
#define max 10
void main()
{
int a[max],b[max],c[2*max],i,j,k,n,m;
clrscr();
printf("size of array a:");
scanf("%d",&n);
printf("enter a elements: \n");
for(i=0;i<n;i++)
scanf("%d", &a[i]);
printf("size of array b:");
scanf("%d",&m);
printf("enter a elements: \n");
for(i=0;i<m;i++)
scanf("%d", &b[i]);
for(i=0,j=0,k=0; i<n && j<m; k++)
if(a[i]<b[j])
c[k] = a[i++];
else
c[k]=b[j++];
while(i<n)
c[k++] = a[i++];
while(j<m)
c[k++] = b[j++];
printf("\n array c:\n");
for(i=0;i<(m+n); i++)
printf("%d", c[i]);
getch();
}
| Is This Answer Correct ? | 19 Yes | 7 No |
Post New Answer View All Answers
If you push the numbers (in order) 1, 3, and 5 onto a stack, which pops out first a) 1 b) 5 c) 3
What is polymorphism in c++? Explain with an example?
What is the use of setprecision in c++?
How do you establish a has-a relationship?
What is #include cstdlib in c++?
What is a block in c++?
What are c++ data types?
What is ofstream c++?
Is there any function that can skip certain number of characters present in the input stream?
What are the various arithmetic operators in c++?
Explain the isa and hasa class relationships.
When are exception objects created?
What type of question are asked in GE code writing test based on c++ data structures and pointers?
What is c++ prototype?
Define a pdb file.