C语言strlwr和tolower比较 strupr和toupper(两个P...)

#include
#include
#include
#include
#include

int main()
{
	char str1[100],str2[100];
	gets(str1);
	gets(str2);
	strlwr(str1);
	strlwr(str2);
	printf("str1变了 全部变为小写了 str1=%s\n",str1);
	printf("str2变了 全部变为小写了 str2=%s\n",str2);
//	char ch1=tolower(str1[0]);
//	char ch2=tolower(str2[0]);
//	printf("ch1=%c str1[0]=%c str1=%s\n",ch1,str1[0],str1);
//	printf("ch2=%c str2[0]=%c str2=%s\n",ch2,str2[0],str2);
	return 0;
}


你可能感兴趣的:(C语言strlwr和tolower比较 strupr和toupper(两个P...))