当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C语言 iscntrl()用法及代码示例


该函数接受一个字符的参数并检查该字符是否被控制。如果角色不受控制,则函数返回零,如果角色不受控制,则返回 ‘one’。

使用这个函数相当简单,因为它只需要一个 char 类型的字符并返回一个整数。整数值决定字符是否被控制。

该函数可用于识别字符数组中的空字符或用户输入的某一点。

例:

    Input character is:‘a’
    Function will return 1


    Input character is:‘DEL’
    Function will return 0

ctype.h - C 中的 iscntrl() 函数示例


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

int main()
{
	// defining the type of variable
	char a;
	int b;

	// assigning the value of variable
	a = 'A';
	b = 0;


	// condition to test the control characters

	if (iscntrl(a) != 0)
	{
		printf("%c is a control character\n", a);
	}
	else
	{
		printf("%c is not a control character\n", a);
	}

	if (iscntrl(b) != 0)
	{
		printf("NULL is a control character\n");
	}
	else
	{
		printf("NULL is not a control character\n");
	}

	return 0;
}

输出

ctype.h - isctrl()  in c language



相关用法


注:本文由纯净天空筛选整理自Abhishek Sharma大神的英文原创作品 iscntrl() function of ctype.h in C。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。