Answer:
View Image
Explanation:
Import the #include <ctype.h> so that you can use the function to check the characters in the string.
Create variable to store letter counts and user input.
Ask for user input with scanf().
Loop through the user input and check each character. Increase count accordingly.
Print out final result.