void str_func(char S[128], char C[128])
{
int result = 0;
for (int i = 0; i < strlen(S); i++)
{
for (int j = 0; j < strlen(C); j++)
{
if (S[i] == C[j])
result++;
}
}
cout << "Количество символов => " << result;
}
str_func("предложение", "набор символов");