please help

 Write a program that takes input of 10 integers into an array.
 Give two options to the user:
1= copy odd numbers from the array to a new array (odd[] array) and sort “odd[]” array in ascending order
and
2= copy even numbers from the array to a new array (even[] array) and sort “even[]” array in ascending order


 Write a function that accept (odd[] or even[]) array and sort it
 Use bubble sort technique to sort the given array
 Display the sorted array.
Hint:: you can use 3 arrays like arry[], odd[], even[].
Last edited on
See the reply here.
http://www.cplusplus.com/forum/general/203840/

What have you tried?
If you make an effort to write something, post your code, maybe someone will offer advice.
Topic archived. No new replies allowed.