#include #include int slength(char s[]) { int i; i =0; while(s[i]!='\0') i = i+1; return i; } char * scopy(char s[]) { char * c; int l,i; l = slength(s); c = (char *)malloc(l); i = 0; while(i