Question: Write a C Program to accept N integer numbers and store them in an array. Create 2 new arrays - one to hold the odd

Write a C Program to accept N integer numbers and store them in an array. Create 2 new arrays - one to hold the odd integers and one to hold the even integers. Display the contents of both arrays. For example: Enter the size of an array that can hold up to 20 integers: Enter the elements (integers) of the array: 0 1 2 3 4 5 The elements of the odd array are: 1 3 5 The elements of the even array are: 0 2 4
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
