Advertisements
Advertisements
प्रश्न
Write a program to create two integer of size 8 and 7. Initialize the arrays with random values. Sort the arrays in ascending order with the help of user defined function namely “sort array”. Merge these arrays with the help of another user defined function named “merge arrays” which returns a new array. Program should display the arrays before and after sorting, also the merged arrays.
उत्तर
#include<conio.h>
#include<stdio.h>
void main()
{
int a[25],b[25],sum[50],i,j,k=1,n,m,s,temp;
clrscr();
printf("Enter the number of element in first array :");
scanf("%d",&n);
printf("\nEnter the element of array :\n");
for(i=1;i<=n;i++)
scanf("%d",&a[i]);
printf("\nEnter the number of element in second array :");
scanf("%d",&m);
printf("\nEnter the element of array :\n");
for(i=1;i<=m;i++)
scanf("%d",&b[i]);
s=m+n;
for(i=1;i<=s;i++)
{
if(i<=n)
{
sum[i]=a[i];
}
else
{
sum[i]=b[k];
k=k+1;
}
}
printf("\n Array before sorting is\n");
for(i=1;i<=s;i++)
printf("%d\t",sum[i]);
for(i=1;i<=s;i++)
{
for(j=1;j<=s;j++)
{
if(sum[i]<=sum[j])
{
temp=sum[i];
sum[i]=sum[j];
sum[j]=temp;
}
}
}
printf("\nElement of array after sorting is :\n");
for(i=1;i<=s;i++)
printf("%d\t",sum[i]);
getch();
}
Output:
Enter the number of elements in first array: 8
Enter the element of array:
1 4 7 8 9 22 66 11
Enter the number of elements in second array: 7
33 55 88 14 16 18 79
Array before sorting is
1 4 7 8 9 22 66 11 33 55 88 14 16 18 79
Array after sorting is
1 4 7 8 9 11 14 16 18 22 33 55 66 79 88
APPEARS IN
संबंधित प्रश्न
Write a program to multiply two matrices after checking compatibility.
Write a program to calculate summation of series
1/1! + 2/2! + 3/3! +….+ n/n!
How to create array of structure variable and assign values to its members?
Define pointer and its use. Explain array of pointer with example. Write program to swap the values by using call by reference concept.
Write a C program to
i. Create a 2D array [Matrix] [in main function]
ii. Write a function to read 2D array[Matrix]
iii. Write a function that will return true(1) if entered matrix is symmetric or false(0) is not symmetric.
iv. Print whether entered matrix is symmetric or not [in main function]
Write a program to sort given array in ascending order.
Comment on dynamic memory allocation. Write a program to read and store N integers in a Array, where value of N is defined by user. Find minimum and maximum members from the Array.