int k; int temp; for(int i=0;i<10-1;i++) { k=i; for(int j=i+1;j<10;j++) { if(a[j]<a[k]) k=j; } if(i!=k) { temp=a[i]; a[i]=a[k]; a[k]=temp; } } }