[ascii] printable / unprintable char

숭글·2022년 4월 21일
0

ASCII CODE

ASCII is the American Standard Code for Information Interchange. It is a 7-bit code. Many 8-bit codes (e.g., ISO 8859-1) contain ASCII as their lower half.

c에서 문자열은 아스키 코드를 통해 표현된다.
print가 가능한 char를 printable char, print가 불가능한 unprintable char라고 부른다.
printable char은 space인 32부터 del인 127이라고 나오지만
사실 del인 127은 printable이라고 해도 되는지 의문이다...🙄

c에서 char 변수형은 1바이트, 8비트인데 아스키 코드는 0~127로 7비트만을 사용한다. 하지만 unsigned char로 선언하거나 후에 캐스팅하면 나머지 1비트도 사용하여 확장 아스키를 통해 표현할 수 있다.
확장 아스키 코드를 사용하려면 #include <windows.h>를 통해 windows 라이브러리를 불러와야한다.


Printable char was unfamiliar words to me. so it was needed to study to use this. this is today I learned. I'm using ascii code so many times these days ..I think i'll never forget about the char. 😎

profile
Hi!😁 I'm Soongle. Welcome to my Velog!!!

0개의 댓글