编写函数strend(s,t),如果字符串t出现在字符串s的尾部,则返回1,否则返回0。
int strend(char *s, char *t){
char *tmp;
while(*s++ != '\0'){
if(*s == *t){
tmp = s;
while(*s++ = *t++);
if(*t = '\0'){
return 1;
}
s = tmp;
}
}
return 0;
}