C C 庫函式使用 ctype h(3)

2021-09-11 08:37:43 字數 853 閱讀 6761

庫里的函式:int isdigit ( int c );

使用:檢查c是否為十進位制數字字元。十進位制數字是以下任意乙個:0 1 2 3 4 5 6 7 8 9。如果確實c是十進位制數字字元 ,則值不為零(即,為真),否則為零(即假)。

例子

/* isdigit example */

#include #include #include int main ()

} printf ("the number of digital character of str 1776ad is %d.\n",sum);

return 0;

}結果輸出:the number of digital character of str 1776ad is 4

庫里的函式:int isgraph ( int c );

使用:檢查c是否是具有圖形表示的字元。除了空格字元('')之外。具有圖形表示的字元都是可以列印的字元(由isprint確定)。如果確實c具有圖形(即可列印)表示作為字元 ,則值不為零(即,為真),否則為零(即假)。

例子

/* isgraph example */

#include #include #include main()

} 結果輸出:str[0] is printable character:97

str[1] is printable character:53

str[3] is printable character:64

str[4] is printable character:59

例子解釋:非列印字元 或 空格字元 時,isgraph判斷為0,str[2]為空格字元,結果輸出無str[2]

ctype h庫函式的使用

ctype.h庫函式簡單解析 序號函 數 功 能 說 明 1int isalnum int ch 判斷字元變數ch是否為字母或數字 當ch為數字0 9或字母a z及a z時,返回非零值,否則返回零。2intisalpha int ch 判斷字元變數ch是否為字母 當ch為字母a z及a z時,返回非...

C C 數學庫函式

所在函式庫為math.h stdlib.h string.h float.h 1.絕對值 int abs int i 返回整型引數i的絕對值 double cabs struct complex znum 返回複數znum的絕對值 double fabs double x 返回雙精度引數x的絕對值 ...

C C 常用的庫函式

include using namespace std 函式名稱 返回值 isalnum 如果引數是字母數字,即字母或者數字,函式返回true isalpha 如果引數是字母,函式返回true iscntrl 如果引數是控制字元,函式返回true isdigit 如果引數是數字 0 9 函式返回tr...