/*This program sorts any number of floating point numbers in ascending order 01/02/2000*/ #include main() { int i,j,n; float arry[100]; float k; clrscr(); printf("\nEnter the number of array elements: "); scanf("%d",&n); printf("\nEnter the array elements: \n"); for(i=0;iarry[j+1]) { k=arry[j]; arry[j]=arry[j+1]; arry[j+1]=k; } } } printf("\nThe sorted array: \n"); for(i=0;i