void Sort( int a[] , int num ){int i,j,temp;for ( i=0;i for( j=i+1 ; j { if ( a[i] > a[j] ) { temp=a[i]; a[i]=a[j]; a[j]=temp ; } }}