The character 'b' is char('a'+1), 'c' is char('a'+2), etc. Use a loop to write out a table of characters with their corresponding integer values.
a 97
b 98
...........
After reading about loops in "Programming Principles" by Bjarne I don't know how to even begin this. How do you distinguish between the initialization of character 'a' and its decimal value 97? Please provide an explanation on how to create code that iterates this.