XC. Create a new file (in Dev C++)
Write a program to count the number of each letter found withinthe attached text file. Use an array to store number of occurrencesfor each letter. Include both upper- and lower-case in the counts(e.g. the word “Element” has 3 Es, 1 L, 1 M, 1 N, and 1 T). Ignoreanything that is not a letter (digits, punctuation, whitespace,etc.). Display the counts of each letter to the console.
You do not need to write 26 if statements (or 26 case statementsfor a switch)…
Instead, you can use the ASCII code for each character todetermine the subscript of
OR
OR