什么是字符分析函数?使用 C 语言程序进行说明。


字符分析和转换函数

“ctype.h”库中的预定义函数用于分析字符输入并转换它们。

分析函数

序号函数描述
1isalpha()字母
2isdigit()数字
3isspace()空格、换行符或制表符
4ispunct()特殊符号
5slower()小写字母
6isupper()大写字母
7isalphanumeric()字母/数字

转换函数

函数描述
tolower()将大写字母转换为小写字母
toupper()将小写字母转换为大写字母

示例

让我们通过一个程序了解字符分析和转换函数 −

 在线演示

#include<stdio.h>
#include<ctype.h>
void main(){
   //Initializing compile time character variable//
char variable = 'A';
   //Reading User I/P//
   //printf("Enter the character : ");
   //scanf("%c",variable);
   //Using character analysis function & printing O/p//
   if (isalpha(variable)){
      printf("The character entered is :%c, an alphabet",variable);
   } else {
      printf("The character entered is not an alphabet");
   }
}

输出

The character entered is :A, an alphabet

更新于: 2021 年 3 月 9 日

176 次浏览

开始 职业 生涯

完成课程后获得认证

开始
广告