ASSUMPTIONS and LIMITATIONS:
There are two arrays sorted in ascending order a[] and b[] of different sizes.
You have to merge them into a third array c[] in ascending order.
You cannot merge the two arrays by coping them into the third array and then apply a sorting algorithm to sort them.
You do not have to use any sorting algorithm throughout the task.
You should take advantage of the fact that a[] and b[] are already sorted arrays, they can me merged without having to sort the third array c[]
SUGGESSIONS:
It will be great if you could add comment lines to make it easy to understand for beginners
The coding language to be used preferably should be C. (I'm also okay with C++ and Java)
I do not ask or answer questions here, so please help me be more clear by correcting or improving my language.