C库函数void iscntrl(int c) 检查,传递的字符是否为一个控制字符。
根据标准的ASCII字符集,控制字符ASCII码为0x00(NUL)到0x1F(美国),到0x7f(DEL)之间,具体的编译器实现某些平台可能定义额外的控制字符中的扩展字符集(0X7F以上)。
声明
以下是iscntrl()函数的声明。
int iscntrl(int c);
参数
-
c -- 这是要检查的字符。
返回值
这个函数返回非零值,如果c是一个控制字符,否则为0
实例
下面的例子显示iscntrl()函数的用法。
#include <stdio.h> #include <ctype.h> int main () { int i = 0, j = 0; char str1[] = "all a about programming"; char str2[] = "tutorials yiibai"; /* Prints string till control character a */ while( !iscntrl(str1[i]) ) { putchar(str1[i]); i++; } /* Prints string till control character */ while( !iscntrl(str2[j]) ) { putchar(str2[j]); j++; } return(0); }
让我们编译和运行上面的程序,这将产生以下结果:
all tutorials