submit a .cpp file - Write a function to declare an array of 50 integer pointers and an array of 25 integers. if the index of the pointer array is even then make the pointer of the integer pointer array to point to a new integer. If the index of the integer pointer array make it point to the next available slot in the integer array. Place a value of the integer pointers array index in the either created integer of in the array of integer accordingly. Finally, using pointer notation cout the values stored in the locations pointed by the array of integer pointers.
OR