1.) Declare an integer constant called ARRAY_SIZE with value 10. 2.) Fill the array with integers 0-9 3.) Declare an integer array called myArray of size ARRAY_SIZE. 4.) Declare a pointer called ptr to store the address of the first element in the array. 5.) Write a for-loop in which the values in my array are doubled using only the ptr.