include<stdio.h>#include<string.h>void reversed(char *p);void copy(char *p);char p[20],t[20];void main(){ char str[20]; printf("输入字符串:\n"); scanf("%s",&str); reversed(str); char *s; s = p; printf("逆序为:"); while(*s!='\0'...