C++ Programming/Code/Standard C Library/Functions/strrchr
strrchr
Syntax |
#include <cstring>
char *strrchr( const char *str, int ch );
|
The function strrchr() returns a pointer to the last occurrence of ch in str, or NULL if no match is found.
Category:Book:C++ Programming#Code/Standard%20C%20Library/Functions/strrchr%20