Saturday, June 11, 2016

Use of strstr function in C program.


//String Processing using strstr function.

#include<stdio.h>
#include<string.h>
int main()
{
    char str1[10]="12345", str2[10]="23";
int n;

n=strstr(str1,str2);

puts(n);
    return 0;
}

//Output

2345

No comments:

Post a Comment