I have the following code. It's supposed to count the number of repetitions of the given letter in a given file. However, when i try to run this i get the Vector subscript out of range. Other people with the same error were trying to access undefined parts of it, but this doesn't seem to be an issue here i think.
struct letters
{
    char letter;
    int repetitions=0;
};
void howManyTimes(const string &output)
{
    ifstream file(output);
    vector <letters> alphabet;
    for (int i = 0; i < 'z' - 'a' + 1; i++)
    {
        alphabet[i].letter = 'a' + i;
    }
    string line;
    while (file.eof() == 0)
    {
        getline(file, line);
        for (char c : line)
        {
            if(c  >= 'a' && c <= 'z')
                alphabet[c - 'a'].repetitions++;
            else if (c >= 'A' && c >= 'Z')
                alphabet[c - 'A'].repetitions++;
        }
    }
    cout << alphabet[10].repetitions;
}
 
     
     
     
    