/****************************************************************************** Online C++ Compiler. Code, Compile, Run and Debug C++ program online. Write your code in this editor and press "Run" button to compile and execute it. *******************************************************************************/ #include #include #include int ocurrencias(char frase[100], int largo, char letra) { int cant = 0; char ucLetra = toupper(letra); for (int i = 0; i < largo; i++) if (toupper(frase[i]) == ucLetra) cant++; return cant; } int main() { char frase[100] = "Hoy hay clase de ProgramaciĆ³n 2"; char letra = 'h'; printf("La letra %c ocurre %d veces\n", letra, ocurrencias(frase, strlen(frase), letra)); return 0; }