Prerequisite knowledge

Problem: Write a program that will output integers from 100 to 65 together with the corresponding characters that the ASCII numbers represent. Use a for..next loop with -ve step and output the results in tabular form. Solution: Display the integers from 100 to 65. For counter = 100 to 65 step –1. Display the value of the integer and the character ................
................