Exercise 17 - Due at 11:59:00 PM on 10/14/2021 solution for Problem 1 can be written as a comment in the solution for problem 2 1. In order to calculate the address of a particulat element of an array, we use the following formula: Address = Base_Address + size_of_one_element * index Calulate the following addresses: (i): Array of doubles. Base address = 2000, index = 34, sizeof(double) = 8 bytes (ii): Array of shorts. Base address = 10504, index = 120, sizeof(short) = 2 bytes (iii): Array of chars. Base address = 45906, index = 219, sizeof(char) = 1 byte 2. Write a program to read in 10 numbers from the user. Store them in an array. Find the sums of the odd and even numbers. Sample Run: Enter the numbers: 1 23 90 -3 6 -130 82 0 -54 19 Odd number sum: 40 Even Number sum: -6