#include <stdio.h> #include <string.h> void swap(char *a,char*b){ char temp; temp = *a; *a = *b; *b = temp; } void reverse(char *s,int start,int end){ int i,j; i = start;j = end; while(i < j){ swap(&s[i],&s[j]); i++;j--; } } void...