Odpowiedź:
#include <iostream>
#include <string>
#include <algorithm>
int main() {
const int N = 10;
std::string words[N];
char letter;
for(auto & word : words){
std::cin >> word;
}
std::cin >> letter;
std::cout << std::count(words[4].begin(), words[4].end(), letter);
return 0;
}
Wyjaśnienie:
Poprawione, błąd bym w tym, że zapomniałem dodać biblioteki algorithm