Exercise12 - Due at 11:59:00 PM EDT on Tuesday, 10/12/2021 Please submit this as a text file (.txt). You can open a text file on notepad or notepad ++ (Windows) or textedit (mac) 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 You don't have to write a program for this problem.