strlwr()函数是C中的内置函数,用于将给定的字符串转换为小写。
句法:
char *strlwr(char *str);
范围:
- str:这表示要转换为小写字母的给定字符串。
返回:它返回转换给定的字符串str的字符为小写后得到的修改后的字符串。
注意:这是一个非标准函数,仅适用于旧版本的MicrosoftC。
下面的程序说明了C语言中的strlwr()函数:
范例1:-
// C program to demonstrate
// example of strlwr() function
#include
#include
int main()
{
char str[ ] = "GEEKSFORGEEKS IS THE BEST";
// converting the given string into lowercase.
printf("%s\n",strlwr (str));
return 0;
}
输出:
geeksforgeeks is the best
示例2:
// C program to demonstrate
// example of strlwr() function.
#include
#include
int main()
{
char str[] = "CompuTer ScienCe PoRTAl fOr geeKS";
printf("Given string is: %s\n",str);
printf("\nString after converting to the "
"lowercase is: %s",strlwr(str));
return 0;
}
输出:
Given string is: CompuTer ScienCe PoRTAl fOr geeKS
String after converting to the lowercase is: computer science portal for geeks
想要从精选的最佳视频中学习和练习问题,请查看《基础知识到高级C的C基础课程》。