C语言tolower()函数:将大写字母转换为小写字母 头文件: #include <ctype.h> 定义函数: int toupper(int c); 函数说明:若参数 c 为小写字母则将该对应的大写字母返回。 返回值:返回转换后的大写字母,若不须转换则将参数c 值返回。 范例:将s 字符串内的小写字母转换成大写字母。 #include <ctype.h> main(...
/* * 将大写字母转换为小写字母 */ #include <stdio.h> int lower(int c) return ((c>='A')&&(c<='z'))?(c+'a'-'A'):(c); main() int i; char a="ABCDEFGHIJKLMNOPQRSTUVWXYZ"; for(i=0;i<26;i++) printf("%c result is %d --- %c\n",a,lower(a),(char)lower(a)); ...
本文实例讲述了C语言实现字母大小写转换的方法。分享给大家供大家参考。具体实现方法如下: /* * 将大写字母转换为小写字母 */ #include <stdio.h> int lower(int c) { return ((c>='A')&&(c<='z'))?(c+'a'-'A'):(c); } main() { int i; char a[]="ABCDEFGHIJKLMNOPQRSTUVWXYZ"; for(...
在C语言中,利用tolower和toupper两个函数实现英文字母的大小写之间的转换 范例1:将s字符串内的小写字母转换成大写字母 #include <ctype.h> int main() char s = "aBcDeFgH"; int i; printf("before toupper() : %s\n", s); for(i = 0; i < sizeof(s); i++) s = toupper(s); printf("af...