<ctype.h> - iscntrl()

Posted 我是CodeAllen

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了<ctype.h> - iscntrl()相关的知识,希望对你有一定的参考价值。

作用:
判断一个字符是否是控制字符

声明:
int iscntrl(int c);

参数:
要检测的字符。它可以是一个有效的字符(被转换为 int 类型),也可以是 EOF(表示无效的字符)。

返回值:
返回值为非零(真)表示c是控制字符,返回值为零(假)表示c不是控制字符。

实例:

#include <stdio.h>
#include <ctype.h>

int main () {
   int i = 0, j = 0;
   char str1[] = "all \\a about \\t programming";
   char str2[] = "tutorials \\n point";
  
   /* Prints string till control character \\a */
   while( !iscntrl(str1[i]) ) {
      putchar(str1[i]);
      i++;
   }
  
   /* Prints string till control character \\n */
   while( !iscntrl(str2[j]) ) {
      putchar(str2[j]);
      j++;
   }
   
   return(0);
}

输出:

以上是关于<ctype.h> - iscntrl()的主要内容,如果未能解决你的问题,请参考以下文章

C 之 ctype.h 原型

ctype.h / cctype 中的字符函数

C和指针 第十三章 习题

C++用来检测数据类型的声明工具源码

c语言 库函数 头文件

C 语言 ctype.h 中系列字符处理函数