Question: Write a program in C that will find the even numbers and odd numbers from an array. The even numbers will be stored an another
Write a program in C that will find the even numbers and odd numbers from an array. The even numbers will be stored an another array named evenArray and odd numbers will be stored in the oddArray. Then print both array. The size of all 3 array will be 12. Prototype:
void findEvenOddNumber(int size, int originalArr[], int evenArr[], int oddArr[]);
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
