//逆转字符串顺序 char str4[5] = "abcd"; _strrev(str4); //逆转字符串顺序,结尾的'\0'不变, 需要头文件 <string.h> printf("abcd逆转后为:%s", str4);//输出结果为:dcba