char* strchr(const char* str, char ch);
Finds the first occurrence of the character ch in string str, and returns a pointer to the character. If the character does not occur in the string, NULL is returned.
char* strchr(const char* str, char ch);
Finds the first occurrence of the character ch in string str, and returns a pointer to the character. If the character does not occur in the string, NULL is returned.