"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


Please Help Members By Posting Answers For Below Questions

Is c the same as c++?

564


What is a down cast?

611


Why do we use vector in c++?

602


What is command line arguments in C++? What are its uses? Where we have to use this?

577


Can we sort map in c++?

596






What is the difference between an external iterator and an internal iterator? Describe an advantage of the external iterator.

562


What is the basic concept of c++?

576


What is a base class?

601


Explain 'this' pointer and what would happen if a pointer is deleted twice?

604


How many different levels of pointers are there?

656


What is the copy-and-swap idiom?

604


Write a program to show polymorphism in C++?

629


What is microsoft c++ redistributable 2013?

575


List different attributes in C++?

643


Define a pdb file.

640