Fourth Example
Write a method with the following heading:
// Return the position of c in s (or s.length() if c is not in s)
public static int find(char c, String s)
‘a’ “All’s well that ends” 13
‘A’ “All’s well that ends” 0
‘i’ “All’s well that ends” 20