C strstr()

C strstr():

String Functions are the built-in functions provided by C to operate and manipulate a string. C strstr() function returns substring from first match till the last character.

Syntax:

char *strstr(const char *string, const char *match)

Example:

#include<stdio.h>  
#include <string.h>    
 
void main()
{    
char str[50]="Hello! C you there C.";    
char *s;
 
s = strstr(str,"C");    
printf("Substring is: %s",s);    
}

Output

Substring is: C you there C.
Please follow and like us:
Content Protection by DMCA.com