tolower()函数用于把大写字母转换为小写字母,不是大写字母的不变。
tolower()函数 语法
int tolower(int ch);
参数ch为待转换的字符。
tolower()函数的返回值:转换后的字符。
tolower()函数 示例
本示例演示把大写字母转换为小写字母。
#include"ctype.h"
#include"stdio.h"
main()
{
char ch1,ch2;
printf(" input a character:");/*输入一个字符*/
scanf("%c",&ch1);
ch2=tolower(ch1);/*转换为小写*/
printf("transform%c to%c.",ch1,ch2);
}
运行结果如图所示。