//PROGRAMME TO SORT AN ARRAY
#include<stdio.h>
#include<conio.h>
void main()
{
int a[10],t,i,j,m;
clrscr();
printf("enter the limit of first array\n");
scanf("%d",&m);
printf("enter the elements of array\n");
for(i=0;i<m;i++)
{scanf("%d",&a[i]);
}
for(i=0;i<m;i++)
{
for(j=0;j<m-1-i;j++)
{
if(a[j]>a[j+1])
{
t=a[j];
a[j]=a[j+1];
a[j+1]=t;
}
}
}
printf("the elements of array in sorted order are\n");
for(i=0;i<m;i++)
{
printf("%d\n",a[i]);
}
getch();
}
#include<stdio.h>
#include<conio.h>
void main()
{
int a[10],t,i,j,m;
clrscr();
printf("enter the limit of first array\n");
scanf("%d",&m);
printf("enter the elements of array\n");
for(i=0;i<m;i++)
{scanf("%d",&a[i]);
}
for(i=0;i<m;i++)
{
for(j=0;j<m-1-i;j++)
{
if(a[j]>a[j+1])
{
t=a[j];
a[j]=a[j+1];
a[j+1]=t;
}
}
}
printf("the elements of array in sorted order are\n");
for(i=0;i<m;i++)
{
printf("%d\n",a[i]);
}
getch();
}
No comments:
Post a Comment