Question:
What is the functionality of the function strstr and stristr?
Answer
strstr: It returns the remainder of a string beginning with the first occurrence of a predefined string.
stristr: same as strstr except the search of for the pattern is case insensitive.
+ Report
What is the functionality of the function strstr and stristr?