[solved] – Question 97766
Write a program that asks the user for a number. If it is between 1 and 255, output the corresponding ASCII character. If it is outside of that range, output “Out of range”
Sample Run
Enter a number between 1 and 255: 97
a
Enter a number between 1 and 255: 256
Out of range
Expert Answer
OR

