• Users
  • bainofmyexistance

User profile: bainofmyexistance

User info
User name:bainofmyexistance
History
Joined:
Number of posts:21
Latest posts:

Sorting arrays and keeping them in sync
Yes thank you, i finally figured it out! Thank you all so much for the help

Sorting arrays and keeping them in sync
I tried removing one of them but once I remove them, I get really weird outputs but swapping them tw...

Sorting arrays and keeping them in sync
[code]for (int i = 0;i<k-1;i++){ for(cand =0;cand<k;cand++){ if(arr[cand]>arr[i]){ ...

Sorting arrays and keeping them in sync
[code]void sort1array(int arr[],int arr2[],int arr3 [],int arr4 [],int k){ int temp,pass,cand; ...

Sorting arrays and keeping them in sync
I need to know if I'm writing this sort function correctly. that sort's an array of #'s into descend...