为了账号安全,请及时绑定邮箱和手机立即绑定

#include<ctype.h>什么意思

#include<ctype.h>

正在回答

2 回答

声明该程序包含ctyp.h这个函数集文件

0 回复 有任何疑惑可以回复我~

  1 字符测试函数

  1> 函数原型均为int isxxxx(int)

  2> 参数为int, 任何实参均被提升成整型

  3> 只能正确处理处于[0, 127]之间的值

  2 字符映射函数

  1> 函数原型为int toxxxx(int)

  2> 对参数进行检测, 若符合范围则转换, 否则不变

  int tolower(int); 'A'~'Z' ==> 'a'~'z'

  int toupper(int); 'a'~'z' ==> 'A'~'Z'

  @函数名称: isalpha

  函数原型: int isalpha(int ch);

  函数功能: 检查ch是否是字母.

  函数返回: 1是字母返回 ,否则返回 0.

  参数说明:

  所属文件

  #include

  #include

  int main()

  {

  char ch1='*';

  char ch2='a';

  if(isalnum(ch1)!=0)

  printf("%c is the ASCII number or alphebet\n",ch1);

  else

  printf("%c is not the ASCII number nor alphebet\n",ch1);

  if(isalnum(ch2)!=0)

  printf("%c is the ASCII number or alphebet\n",ch2);

  else

  printf("%c is not the ASCII number nor alphebet\n",ch2);

  return 0;

  }

  @函数名称: iscntrl

  函数原型: int iscntrl(int ch);

  函数功能: 检查ch是否控制字符(其ASCII码在0和0x1F之间,数值为 0-31).

  函数返回: 是返回 1,否则返回 0.

  参数说明:

  所属文件:

  #include

  #include

  char chars[]={'A',0x09,'Z'};

  #define SIZE sizeof(chars)/sizeof(char)

  int main()

  {

  int i;

  for(i=0;i

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

#include<ctype.h>什么意思

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信