http://www.daniweb.com – I've been given a practical where I have develop a random bubble sort algorithm and I've created one already where the user enters the elements needed to arrange the numbers, I now have to use a random number generator that uses a set of 10 random numbers from 1-10000 and then bubble sort that could anyone please help me to how I can acheive this feat. #include<stdio.h> void bubble_sort(int [],int); int main() { int a[30],n,i; printf("\nEnter no of elements :"); scanf("%d",&n); printf("\nEnter array elements :"); for(i=0;i<n;i++) scanf("%d",&a[i]); bubble_sort(a,n); } void bubble_sort(int a[],int n) { int i,j,k,temp; printf("\nUnsorted Data:"); for(k=0;k<n;k++) printf("%5d",a[k]); for(i=1;i<n;i++) { for(j=0;j<n-1;j++) if(a[j]>a[j+1]) { temp=a[j]; a[j]=a[j+1]; a[j+1]=temp; } printf("\nAfter pass : %d",i); for(k=0;k<n;k++) printf("%5d",a[k]); } } (General)