c语言tolower函数用法示例,C语言tolower函数介绍、示例和实现

C语言tolower函数用于把大写字母转换为小写字母。

在本文中,我们先来介绍tolower函数的使用方法,然后编写一个自定义的_tolower函数,实现与tolower函数相同的功能。

1、包含头文件

#include

2、函数声明

int tolower(int c);

3、功能说明

把大写字母转换为小写字母,如果参数c不是大写字母就不转换,您可能会问:tolower函数的参数和返回值是整数,不是字符,在C语言中,字符就是整数,请补充学习一下基础知识。

参数c为待转换的字符。

返回值为转换后的结果。

4、示例

/*

* 程序名:book.c,此程序演示C语言的tolower函数。

* 作者:C语言技术网(www.freecplus.net) 日期:20190525

*/

#include

int main()

{

printf("tolower('-')=%c\n",tolower('-'));

printf("tolower('0')=%c\n",tolower('0'));

printf("tolower('a')=%c\n",tolower('a'));

printf("tolower('A')=%c\n",tolower('A'));

}

运行效果

你可能感兴趣的:(c语言tolower函数用法示例,C语言tolower函数介绍、示例和实现)