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