Answer to Exercise 2-5, page 48 Solution 1 by Richard Heathfield Solution 2 by Partha Seetala Write the function any(s1,s2) , which returns the first location in the string s1 where any character from the string s2 occurs, or -1 if s1 contains no characters from s2 . (The standard library function strpbrk does the same job but returns a pointer to the location.) Here is my solution, which is ver..