함수명 : toastcii
헤더 파일 : <ctype.h>
함수 프로토타입 : int toast(int ch);
기능 : 문자를 ASCII로 변환합니다. 이는 실제로 가장 높은 8자리 이진수를 0으로 변경하는 것을 의미합니다.
매개변수 : 변환할 int ch 문자
반환값 : 변환된 문자를 반환
프로그램 예 : ASCII가 아닌 문자를 ASCII 문자로 변환
#include<ctype.h>#include<stdio.h>intmain(){intch1,ch2;ch1='a'+128;ch2=toascii(ch1);printf(transform%cto%c.n,ch1, ch2);반환0;}
실행 결과:
변신?토아.