Go to the documentation of this file. 6 int i,
n,
temp,j,arr[25];
7 printf(
"Enter the number of elements in the Array: ");
9 printf(
"\nEnter the elements:\n\n");
14 printf(
" Array[%d] = ",i);
22 for(j=0 ; j<n-i-1 ; j++)
34 printf(
"\nThe Sorted Array is:\n\n");
38 printf(
" %4d",arr[i]);