原 型:char *strrchr(const char *s, int c);
头 文 件:string.h
返 回 值:指向字符的指针,此字符是s所指向字符串中最后一个遇到的字符c。如果没有找到c,则返回空指针。
也可参见:memchr、strchr、strpbrk、strstr