Reference the following instructions to assist you when completing your Programming Using Arrays and Pointers assignment.
Create a single C++ program that performs the following:
- Intialize the pointer array with the sequence of upper/lower case alphabet pairs,Aa Bb Cc .... Xx Yy Zz.(The first element of the array isAa; the second element of the array isBb; etc.)
- Using a for loop, print the contents of the array.
The output should appear exactly as follows with heading and single spaces between the elements:
PRINTING CONTENTS OF ARRAY
==================================
Aa Bb Cc Dd Ee Ff Gg Hh Ii Jj Kk Ll Mm Nn Oo Pp Qq Rr Ss Tt Uu Vv Ww Xx Yy Zz