c++函数


头文件:string.h例://拷贝字符串 将str4拷贝到str5中 char str5[20]; strcpy_s(str5, str4); // printf("str5的值为

//逆转字符串顺序 char str4[5] = "abcd"; _strrev(str4); //逆转字符串顺序,结尾的'\\0'不变, 需要头文件 <