Subj : Problem with READDATA function To : borland.public.cpp.borlandcpp From : "Kristine" Date : Mon Aug 18 2003 06:05 pm hi all- I am having a problem with my readdata function. Can anyone advise? thanks- k /*Comments would be here*/ #include void readdata (int x[], int r); void sortem (int q[], int m); void changethem (int alpha[], int k); void main () { int i, n, numb [50]; printf("Please enter size of array. "); scanf("%d", &n); printf("Please enter in %d integers.", n); readdata (numb, n); sortem (numb, n); printf("Here is the stored array: "); for (i=0; iq[j]){ temp = q[j]; q[j] = q[i]; q[i] = temp; } } void changethem (int alpha[], int k) { int i, temp; temp = alpha[0]; alpha[0] = alpha[5]; alpha[5] = temp; for (i=1; i