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