ctype.h中包含的函数

这篇博客详细介绍了C语言头文件ctype.h中的一系列字符检查函数,包括isalpha、iscntrl、isdigit、isgraph、islower、isupper、tolower、toupper、isalnum、isprint、ispunct、isspace和isxdigit。这些函数主要用于判断和转换ASCII字符的各种属性,如字母、数字、控制字符等。
摘要由CSDN通过智能技术生成

isalpha

  函数名称: isalpha
  函数原型: int isalpha(int ch);
   函数功能: 检查ch是否是字母.
  函数返回: 是字母返回非0 ,否则返回 0.
  参数说明:
  所属文件 <ctype.h>
  #include <stdio.h>
  #include <ctype.h>
  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

  函数名称: iscntrl
  函数原型: int iscntrl(int ch);
  函数功能: 检查ch是否 控制字符(其ASCII码在0和0x1F之间,数值为 0-31 ).
  函数返回: 是返回非0,否则返回 0.
  参数说明:
  所属文件: <ctype.h>
  #include <stdio.h>
  #include <ctype.h>
  char chars[]={'A',0x09,'Z'};
  #define SIZE sizeof(chars)/sizeof(char)
  int main()
  {
  int i;
  for(i=0;i<SIZE;i++){
  printf("Char %c is %sa Control character\n",
  chars[i],(iscntrl(chars[i]))?"":"not");
  }
  return 0;
  } [1]

isdigit

  函数名称: isdigit
  函数原型: int isdigit(int ch);
  函数功能: 检查ch是否是数字(0-9)
  函数返回: 是返回非0,否则返回0
  参数说明:
  所属文件: <ctype.h>
  #include <stdio.h>
  #include <ctype.h>
  int main()
  {
  char ch1='1';
  char ch2='a';
  if(isdigit(ch1)!=0)
  printf("%c is the ASCII number\n",ch1);
  else
  printf("%c is not the ASCII number\n",ch1);
  if(isdigit(ch2)!=0)
  printf("%c is the ASCII number\n
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值