C++ Programming/Code/Standard C Library/Functions/strchr
strchr
editSyntax |
#include <cstring>
char *strchr( const char *str, int ch );
|
The function strchr() returns a pointer to the first occurrence of ch in str, or NULL if ch is not found.
Syntax |
#include <cstring>
char *strchr( const char *str, int ch );
|
The function strchr() returns a pointer to the first occurrence of ch in str, or NULL if ch is not found.