C/C++库函数: 将字符串转换成小写strlwr/大写strupr(我很少用, 所以记录一下)

#include <iostream>
using namespace std;

int main()
{
	char szTest[] = "abC";
	cout << strlwr(szTest) << endl;
	cout << szTest << endl;

	cout << strupr(szTest) << endl;
	cout << szTest << endl;

	return 0;
}

       上面程序ok, 但是, 下面程序有问题:

#include <iostream>
using namespace std;

int main()
{
	cout << strlwr("abC") << endl;
	cout << strupr("abC") << endl;

	return 0;
}


       不多述。

你可能感兴趣的:(C/C++库函数: 将字符串转换成小写strlwr/大写strupr(我很少用, 所以记录一下))