Given an array of elements, implement a logic to print the c…

Given an array of elements, implement a logic to print the counts of even & odd integers separately. Concentrate on your array logic, variables, and printf() statements. Assume the array is already declared and defined, and is of size SIZE. int array = {23, 34, 45, 56, 67, 78}; The number of even integers in the array are: 3 The number of odd   integers in the array are: 3