Problems
Write a program that continuously receives numbers from 33 to 127, prints the character corresponding to the ASCII code of each entered number, and terminates when a number outside this range is entered.
Example #1
ASCII code =? 66
ASCII code =? 122
ASCII code =? 0
B
z
Example #2
ASCII code =? 65
ASCII code =? 97
ASCII code =? 120
ASCII code =? 130
A
a
x
Source
자기주도C언어프로그래밍