void swap (char *x,char *y) { char *t; t=x; x=y; y=t; } void