Question: Write a C program called oddEven.c that reads in 10 numbers separated by commas from the user and then prints out both the list of

Write a C program called oddEven.c that reads in 10 numbers separated by commas from the user and then prints out both the list of odd numbers and the list of even numbers. For example if the user types 1.3, 4.6, 12, 9.10, 2145.18 it will output The list of even numbers is 4 612 10 18 The list of odd numbers is 139 21 15 Think of the steps you need to do in pseudocode and then write your code
Step by Step Solution
There are 3 Steps involved in it
Pseudocode Declare Arrays Variables Create two arrays one for odd numbers and one for even numbers D... View full answer
Get step-by-step solutions from verified subject matter experts
