来源:学生作业帮 编辑:神马作文网作业帮 分类:综合作业 时间:2024/11/10 23:05:29
如何把大写英文转换小写英文
用 tolower 函数,见下例:
/* tolower example */
#include
#include
int main ()
{
int i=0;
char str[]="Test String.\n";
char c;
while (str[i])
{
c=str[i];
putchar (tolower(c));
i++;
}
return 0;
}