Download: https://solutionzip.com/downloads/appendixc_upperlower/
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 is Aa; the second element of the array is Bb; 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
• Change the program logic to prompt you for a position within the array that coincides with the appropriate letter pair. Your program should be able to duplicate the following session:
Select the number that coincides with the letter pair.
For example, the number 7 should display the pair Gg.
Enter a number between 1 and 26: 4
The number you selected: 4
The pair related to this number: Dd
•