C strrchr Function

The C strrchr function is a String method, which returns a pointer to the last occurrence of a character in a given string. The syntax of the C strrchr function is void *strrchr(const char *str, const char *chr_to_look); strrchr in C Language Example The strrchr function is used to find the last occurrence of a character within … Read more