ctype的例子
时间: 2023-08-12 08:17:50 浏览: 164
单片机c语言例子
ctype.h是C语言中的一个头文件,其中定义了用于测试字符类型的函数,例如isalpha、isdigit、isspace等等。以下是一个ctype的例子:
```
#include <ctype.h>
#include <stdio.h>
int main() {
char c = 'A';
if (isalpha(c)) {
printf("'%c' is an alphabetic character.\n", c);
} else {
printf("'%c' is not an alphabetic character.\n", c);
}
if (isdigit(c)) {
printf("'%c' is a digit character.\n", c);
} else {
printf("'%c' is not a digit character.\n", c);
}
if (isspace(c)) {
printf("'%c' is a whitespace character.\n", c);
} else {
printf("'%c' is not a whitespace character.\n", c);
}
return 0;
}
```
上面的程序将字符c设置为'A',然后使用isalpha、isdigit和isspace函数测试该字符的类型,并输出结果。输出结果如下:
```
'A' is an alphabetic character.
'A' is not a digit character.
'A' is not a whitespace character.
```
阅读全文