arun


{ City } ghaziabad
< Country > india
* Profession *
User No # 54386
Total Questions Posted # 0
Total Answers Posted # 1

Total Answers Posted for My Questions # 0
Total Views for My Questions # 0

Users Marked my Answers as Correct # 19
Users Marked my Answers as Wrong # 7
Questions / { arun }
Questions Answers Category Views Company eMail




Answers / { arun }

Question { HCL, 22067 }

"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

/*Program to merge two array & show them in shorted form */
#include
#include

#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
scanf("%d", &a[i]);


printf("size of array b:");
scanf("%d",&m);

printf("enter a elements: \n");
for(i=0;i
scanf("%d", &b[i]);




for(i=0,j=0,k=0; i
if(a[i]
c[k] = a[i++];

else

c[k]=b[j++];

while(i
c[k++] = a[i++];


while(j
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