strrchr string function in C programming Language
- Home
- function in C
- strrchr string function in C programming Language
- On
- By
- 0 Comment
- Categories: function in C, Library function in C, Pre-define String function in C
strrchr string function in C programming Language
strrchr string function in C programming Language
In this tutorial, We will learn about strrchr string function in C programming Language
Description
strrchr() – In the C programming language, the strrchr functions find the last occurrence of the character within the String as denoted by character.
Declaration
Syntax for strrchr() function is given below
char *strrchr( const char *str, char c);
str is a string, c is a character
Parameters or arguments
str – This is the string in C language
c – This is the character located is the string for searched strrchr()
Returns
The strrchr function pointer identifies the last occurrence of the character in the string. If it can’t find the value, it returns as null pointer.
Required Header
the required header for strrchr() String function in C Programming language
#include<string.h>
strrchr string function in C
Example
Program 1
“This is code for coding website” is a string. C is a pointer for find the second occurrence in the string by strchr() function
#include <stdio.h> #include <stdlib.h> int main() { char website[]="This is code for coding website"; char *p; p=strrchr(website,'c'); printf("%s\n",p); getch(); return 0; }
When the above code is executed, it produces the following results:
coding website
There are other C programming language functions that are similar to this function
strncmp() function in C language
strcat() function in C language
strcpy() function in C language
strncpy() function in C language
strset() function in C language
strlwr() function in C language
strdub() function in C language
strupr() function in C language
strlen() function in C language
strnset() function in C language
strchr() function in C language
strrchr() function in C language
strtok() function in C language
strrev() function in C language
strcmp() function in C language
strnset() function in C language
Suggested for you
String function in C programming Language
Function in C programming language
Arithmetic function in C language
User defined function in C programming language
recursive Function in C language
recursive Function in C++ language
recursive Function in Python language