📅  最后修改于: 2020-09-25 07:09:24             🧑  作者: Mango
int tolower(int ch);
tolower()
函数将ch
转换为其小写版本(如果存在)。如果字符的小写版本不存在,则它将保持不变。从A到Z的大写字母分别转换为从a到z的小写字母。
如果ch
的值不能表示为无符号字符或不等于EOF,则tolower()
的行为是不确定的。
它在
ch
:要转换的字符
tolower()
函数返回ch
的小写版本(如果存在)。否则返回ch
。
#include
#include
#include
#include
using namespace std;
int main()
{
char str[] = "John is from USA.";
cout << "The lowercase version of \"" << str << "\" is " << endl;
for (int i=0; i
运行该程序时,输出为:
The lowercase version of "John is from USA." is
john is from usa.