C strrchr function

« Previous

Synopsis:

Example

#include <stdio.h>
char *strrchr(char *string, int c); 

Description:

The strrchr function searches string for the last occurrence of c. The null character terminating string is included in the search.

Return Value

The strrchr function returns a pointer to the last occurrence of character c in string or a null pointer if no matching character is found.

Example

Example

#include <stdio.h>
int main() {
  char *s;
  char buf [] = "A testing";
  s = strrchr (buf, 't');
  if (s != NULL)
    printf ("found a 't' at %s\n", s);
  return 0;
}

Output Will Be :

Output

found a 't' at ting


« Previous
Have Any Suggestion? We Are Waiting To Hear from YOU!

Your Query was successfully sent!