/*strcat:concatenate t to the end of s:pointer version */
void strcat(char *s, char *t){
while(*s)
s++;
while(*s++ = *t++)
;
}
/*strcat:concatenate t to the end of s:pointer version */
void strcat(char *s, char *t){
while(*s)
s++;
while(*s++ = *t++)
;
}