int isdigit ( int c );
isdigit() 用来检测一个字符是否是十进制数字。
十进制数字包括:0 1 2 3 4 5 6 7 8 9
标准 ASCII 编码共包含了 128 个字符,不同的字符属于不同的分类,我们在 <ctype.h> 头文件中给出了详细的列表。
返回值为非零(真)表示c是十进制数字,返回值为零(假)表示c不是十进制数字。
#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>
int main ()
{
char str[]="1776ad";
int year;
if (isdigit(str[0]))
{
year = atoi (str);
printf ("The year that followed %d was %d.\n", year, year+1);
}
return 0;
}
运行结果:
isdigit() 函数用来检测 str 字符串的首个字符是否是十进制数字,如果是,就调用 atoi() 函数将 str 转换为整数。
我们在编写C语言程序时,通常使用 char 类型来表示一个字符,而 isdigit() 的参数却是 int 类型,这是为什么呢?请猛击《为什么<ctype.h>中的函数参数都是int类型》一文了解详情。