Page not loading? Try clicking here.
Placeholder

#593

String 1 - Self Assessment 1 1s - MB

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언어프로그래밍

You must sign in to write code.