strchrSearches for the first occurrence of a specified character in a character string | |||||
Arguments
Return ValueA pointer to the first occurrence of the character c within the string s is returned. NULL is returned if c cannot be found within s.ExplanationThe first occurrence of the character c is located in the string pointed to by s. A pointer to the located character is returned. |