fork download
  1. #include <stdio.h>
  2.  
  3. void histogram(char *);
  4.  
  5. int main() {
  6. char str[50];
  7.  
  8. printf("\n\tDigite uma frase: ");
  9. fgets(str,50,stdin);
  10. histogram(str);
  11.  
  12. }
  13.  
  14. void histogram(char *frase) {
  15. int num=0, num2=0, az=0;
  16. char alfabeto[]="abcdefghijklmnopqrstuvwxyzçABCDEFGHIJKLMNOPQRSTUVWXYZÇ";
  17.  
  18. for(num = 0; frase[num] != 0; num++) {
  19. for (num2 = 0; alfabeto[num2] != '\0'; ++num2){
  20. if (frase[num] == alfabeto[num2]){
  21. az++;
  22. break;
  23. }
  24. }
  25. }
  26.  
  27. printf("\n\n\tTemons %d letras\n\n", az);
  28. }
  29.  
Success #stdin #stdout 0s 4464KB
stdin
texto de exemplo
stdout
	Digite uma frase: 

	Temons 14 letras