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