strrev() 字符数组翻转。
USAGE:
char str_temp[] = "abcd"; printf("%s ", str_temp); strrev(str_temp); printf("%s", str_temp);