I'm trying to write a program which analyzes a string consisting of multiple names/words and outputs how many of each letter occurrences there are. (including upper and lower case characters.)
i.e. string: "lafayette polk detroit"
contains: 2-a's, 3-e's, 1-i, 2-o's, etc., etc.
I'm...