関数名:toastcii
ヘッダーファイル: <ctype.h>
関数プロトタイプ: int toast(int ch);
機能: 文字を ASCII に変換します。実際には、上位 8 桁の 2 進数を 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);return0;}
実行結果:
変身?とあ。