void strcpy(char *s, char *t)

{

            while (*s!=‘\0’)

            {

                        s++;

            }

}