How to concatinate arrays?

  • Thread starter Thread starter StudiousStudent
  • Start date Start date
S

StudiousStudent

Guest
I'm implimenting the bucket sort algorithm and I want to know if there's a way to concatinate 3 sorted arrays back into the original array.

int arr1[] = { 3, 4, 5, 6 };
int arr2[] = { 11, 18, 19 };
int arr3[] = { 23, 25, 27 };
Any help would be appreciated. Also this isn't a homework assignemnt etc. Just an issue I've had with arrays for a while. The original array is of the correct size which is 10.

StudiousStudent

Continue reading...
 
Back
Top