c_cpp _strlwr&_strupr

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp _strlwr&_strupr相关的知识,希望对你有一定的参考价值。

#include <iostream>
#include <string>
using namespace std;

int main() {
	char str1[] = "China";
	cout << _strlwr(str1) << endl;	// china
	cout << _strupr(str1) << endl;	// CHINA
}

以上是关于c_cpp _strlwr&_strupr的主要内容,如果未能解决你的问题,请参考以下文章

由strupr,strlwr体会如果将字符常量转换为变量进行修改,体会常量的静态存储

visual studio2017怎么使用strcat,strcpy,strlwr,strupr

为啥在Linux中strlwr()不能编译通过,已经查看过<string.h>,的确在头文件中没有

在Linux下有将字符串进行大小写转换的函数吗

怎么C语言编写一个函数字符串的大小写转换

C语言把字串转换大小写的函数