strchr(char s1[], char ch)
searches the entire string for the first occurrence of given character
If it finds it, it returns a pointer to that character.
strstr() is the string version of this
strchr(char s1[], char ch)
searches the entire string for the first occurrence of given character
If it finds it, it returns a pointer to that character.
strstr() is the string version of this