Here is the Program of Selection Sort
Sorting refers to arranging elements of an Array in increment or in decrement order, Selection Sort is also a type of sorting technique.
See below the Source Code of Selection Sort
void main()
{
clrscr();
int a[10],i,j,small,pos,temp;
cout<<"\n\t Enter 10 Values :\t";
for(i=0;i<=9;i++)
{
cin>>a[i];
} ...... [ Read More ]
Direct Download [.CPP format] – Selection Sort Program
[To download file, just Right Click and click Save Target As]


