bubble sort
void bubble(int a[], int N){ int i,j,t; for(i=N-1;i>0;i--){ for(j=0;j<i;j++){ if(a[j]>a[j+1]){ t=a[j]; a[j]=a[j+1]; a[j+1]=t; } } } }