void SortIntegerArray(int a[], int n){ int i,j,temp;n--; for(i=0;ifor(j=0;jif(a[j]>a[j+1]){temp=a[j];a[j]=a[j+1];a[j+1]=temp;} }; #include #define N 10 void main() { int i,array[N]; printf(\"Input the number to be sorted:\"); for(i=0;iscanf(\"%d\",&array[i]);