函數名: isascii
頭檔:<ctype.h>
函數原型: int isascii(int ch);
功 能: 判斷字元是否為ASCII碼,即字元ASCII在0到127之間
參數: int ch 待檢查的字符
傳回值: ch不是ASCII 回傳0,ch是ASCII 回傳非0
程序例:判斷輸入的字元是否為ASCII字符
#include<ctype.h>#include<stdio.h>intmain(){charch;printf(inputacharacter:);ch=getchar();if(isascii(ch)){printf(%cisascii.,ch);} else{printf(%cisnotascii.,ch);}putchar('n');return0;}
運行結果:
inputacharacter:ffisascii.