hey guys, i have an extra credit assignment that wants me to count how many times each letter occurs in a string, i'm not sure how to get started:

heres the description, it doens't seem like it will be real difficult, but i'm having trouble getting started

Write a function that counts the occurance of each letters occurance in a string.
The function should recieve as formal paramater only an array of characters.
Use the following header :


void count(const char myStr[])


For the function call

count("ABcaBadd*eekjdfefdeg,TTew44Tt")

Only the following output should be produced :
The letter A occurs 3 times
The letter B occurs 2 times
The letter C occurs 1 times
The letter D occurs 4 times
The letter E occurs 5 times
The letter F occurs 2 times
The letter G occurs 1 times
The letter J occurs 1 times
The letter K occurs 1 times
The letter T occurs 4 times
The letter W occurs 1 times