#include <cstring> char *strrchr( const char *str, int ch );
函式 strrchr() 返回指向 str 中 ch 的最後一次出現的指標,如果未找到匹配項,則返回 NULL。