I have two arrays both have a defined sized for each element that was filled when reading from a file currently but have a max size of 50
I have array 1 [4]
I have array 2 [2]
However, my main point is I have to process these two arrays and print them out all simtaneously as one list based on ascending value for the element in the array
So it is not as simple as two for loops and printing the array, I have to sort the array in ascending order when it is printed
How would I do this ? with some sort of multiple for loop initialization ?