/*编写strend(s,t),如果字符串t出现在字符串s的底部,该函数返回1:否则返回0。*/int strend(char *a,char *b){ char *q=b; while(*++a) ; while(*++b) ; while(q!=b) if(*--a!=*--b) return 0; return 1;}
3 回答
122138763238273
TA贡献3条经验 获得超0个赞
int strend(char *a,char *b) { char *q=b; while(*++a) ; while(*++b) ; while(q!=b) if(*--a!=*--b) return 0; return 1; }
122138763238273
TA贡献3条经验 获得超0个赞
防瞎眼-_-
int strend(char *a,char *b)
{
char *q=b;
while(*++a)
;
while(*++b)
;
while(q!=b)
if(*--a!=*--b)
return 0;
return 1;
}
- 3 回答
- 0 关注
- 1287 浏览
添加回答
举报
0/150
提交
取消