#include #include void main() { printf( "%s\n", jstrrchr( "abcdeabcde", 'a' ) ); if( jstrrchr( "abcdeabcde", 'x' ) == NULL ) printf( "NULL\n" ); }