Home » Interview » Technology

What is the functionality of the function strstr and stristr?

Correct Answer: strstr() returns part of a given string from the first occurrence of a given substring to the end of the string For example: strstr("user@examplecom","@") will return "@examplecom" stristr() is idential to strstr() except that it is case insensitive

← Previous Question Next Question→

Discussion & Comments

No comments yet. Be the first to comment!
Join Discussion