tolowerc语⾔,C语⾔tolower()⽤法及代码⽰例tolower()函数在ctype.h头⽂件中定义。如果传递的字符是⼤写字母,则tolower()函数会将⼤写字母转换为⼩写字母。
⽤法:
int tolower(int ch);
参数:此⽅法采⽤强制参数ch,该参数是要转换为⼩写字母的字符。
返回值:此函数返回对应于ch的⼩写字符。
以下⽰例程序旨在说明C语⾔中的tolower()函数:
⽰例1:
// C program to demonstrate
// example of tolower() function.
#include
#include
int main()
{
// Character to be converted to lowercase
char ch = 'G';
// convert ch to lowercase using toLower()
printf("%c in lowercase is represented as = %c", ch, tolower(ch));
return 0;
}
输出:
G in lowercase is represented as = g
⽰例2:
/
/ C program to demonstrate
// example of tolower() function.
#include
#include
int main()
{
int j = 0;
char str[] = "GEEKSFORGEEKS\n";
// Character to be converted to lowercase
char ch = 'G';c语言char的用法
// convert ch to lowercase using toLower()
char ch;
while (str[j]) {
ch = str[j];
// convert ch to lowercase using toLower() putchar(tolower(ch));
j++;
}
return 0;
}
输出:
geeksforgeeks

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。