C++中的strrev函数

C++中的strrev函数

    

    C++中有函数strrev,功能是对字符串实现反转,但是要记住,strrev函数只对字符数组有效,对string类型是无效的。


    具体见下面代码,其中我还自己实现了一下:


#include
#include
using namespace std; 

int main()
{
	char s[100] = "china"; 

	cout<


C++中的strrev函数_第1张图片



你可能感兴趣的:(C/C++)