有C语言实现大小写字母转换
有C语言实现大小写字母转换
日期:2019-05-09 12:14:20 人气:1
函数名:
tolower
功
能:
把字符转换成小写字母
用
法:
int
tolower(int
c);
程序例:
#include
#include
#include
int
main(void)
{
int
length,
i;
char
*string
=
"THIS
IS
A
STRING";
length
=
strlen(string);
for
(i=0;
i
{
string[i]
=
tolow