back
Alphabet Case Conversion Problem
Your programming assignment is to create a character array named alphabet and then initialize the array to "ABCDEFGHIJLMNOPQRSTUVWXYZ." Write a loop that will replace one character of the array at a time with the lower case letters a-z. Print the character array to the screen during each iteration of the loop. Your output will look like this:

ABC...
aBC...
abC...
abc...

Your iteration will continue all the way to the end of the alphbet. Hint: A character array is an array of integer values. Use the ASCII values to make the changes. The ASCII value for lower case "a" is 97. This exercise is taken from page 192 of your text.

You may work in a group of up to three.