C Program For Sorting Array elements (Selection Sort)

#include<stdio.h>
#include<conio.h>
void main()
{
int i,a[10],n,j,t;
clrscr();
printf("enter the value of n: ");
scanf("%d",&n);
printf("\nenter the values");
for(i=0;i<n;i++)
 scanf("%d",&a[i]);
for(i=0;i<n;i++)
{
 for(j=i+1;j<n;j++)
 {
  if(a[i]>a[j])
  {
   t=a[i];
   a[i]=a[j];
   a[j]=t;
  }
 }
}
printf("\nelements after selection sorting are:\n");
for(i=0;i<n;i++)
printf("%d\n",a[i]);
getch();
}


Bhanu Namikaze

Bhanu Namikaze is an Ethical Hacker, Security Analyst, Blogger, Web Developer and a Mechanical Engineer. He Enjoys writing articles, Blogging, Debugging Errors and Capture the Flags. Enjoy Learning; There is Nothing Like Absolute Defeat - Try and try until you Succeed.

No comments:

Post a Comment