function n = charCount(s,c)
% Report # of c’s in string s
n = sum(c == s);
