Hello, for the final part of my program I need to count how many letters appear throughout a pretty large input file. Opening the file, storing to an array, etc.. is all taken care of. I'm clueless on how to count each letter that occurs. I've read structures are the way to go, and others that arrays are best. I know I'd need to declare an array along the lines of:
char letters[26] = "abcdefghijklmnopqrstuvwxyz";
but I'm clueless from here, thanks in advance for any help, tips and/or suggestions.