strchr string function in C programming language
- Home
- function in C
- strchr string function in C programming language
- On
- By
- 0 Comment
- Categories: function in C, Pre-define String function in C
strchr string function in C programming language
strchr string function in C programming language
In this tutorial, We will learn about strchr string function in C programming language
strchr() – In C programming language strchr() string function, pointer displays the given character from its first occurrence.
Declaration
Syntax
Syntax for strchr() function is given below
char strchr( const char *str,int ch);
Parameter or arguments
str – The string in which the character is searched for the first appearance
ch – The character that is searched in the string str
Returns
The strchr() function’s pointer returns the given character within the string from its first appearance.
Required Header
the required header strchr() in C Programming language
#include<string.h>
strchr string function
Program 1
#include <stdio.h> #include <stdlib.h> int main() { char website[]="This is code4coding website "; char *p; p=strchr(website,'c'); printf("%s\n",p); getch(); return 0; }
When the above code is executed, it produces the following results:
code4coding website
There are other C programming language functions that are similar to this function
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