strlwr函數(shù)使用方法?
strlwr()函數(shù)是C語(yǔ)言中的內(nèi)置函數(shù),用于將給定的字符串轉(zhuǎn)換為小寫(xiě)。
用法:
char *strlwr(char *str);
參數(shù):
str:這表示要轉(zhuǎn)換為小寫(xiě)字母的給定字符串。
返回值:它返回將給定字符串str的字符轉(zhuǎn)換為小寫(xiě)字母后獲得的修改后的字符串。
注意:這是一個(gè)非標(biāo)準(zhǔn)功能,僅適用于舊版本的MicrosoftC。
以下示例程序旨在說(shuō)明C語(yǔ)言中的strlwr()函數(shù):
示例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