for each of the following parts, write a single c statement that performs the indicated task. for each part, assume that all previous statements have been executed (e.g., when doing part e, assume the statements you wrote for parts a through d have been executed). for each part, do not use any variable names not mentioned in that part (e.g., if the part doesn't mention cat, do not use cat in your answer). declare a pointer variable named cat that can point to a variable of type double. declare mouse to be a 5-element array of doubles. make the cat variable point to the last element of mouse. make the double pointed to by cat equal to 25, using the * operator. without using the cat pointer, and without using square brackets, set the fourth element (i.e., the one at position 3) of the mouse array to have the value 54. move the cat pointer back by three doubles. using square brackets, but without using the name mouse, set the third element (i.e., the one at position 2) of the mouse array to have the value 42. (you may use cat.) without using the * operator or the name mouse, but using square brackets, set the double pointed to by cat to have the value 17. using the