|
strchrfunction
<cstring> const char * strchr ( const char * str, int character ); char * strchr ( char * str, int character ); Locate first occurrence of character in string Returns a pointer to the first occurrence of character in the C string str.The terminating null-character is considered part of the C string. Therefore, it can also be located to retrieve a pointer to the end of a string. Parameters
Return ValueA pointer to the first occurrence of character in str.If the value is not found, the function returns a null pointer. PortabilityIn C, this function is declared as:char * strchr ( const char *, int ); instead of the two overloaded versions provided in C++. Example
Output:
See also
|