摘要: 1、将一个字符串倒序,如“abcd”倒序后变为“dcba”。 1 /*字符串倒序*/ 2 #include <stdio.h> 3 #include <string.h> 4 #include <stdlib.h> 5 6 char *str_reverse(char *src) 7 { 8 cha 阅读全文
posted @ 2020-04-12 01:03 朱果果 阅读(235) 评论(0) 推荐(0) 编辑