fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <string.h>
  4. #include <ctype.h>
  5.  
  6. int testvogal(char p);
  7. int main(void) {
  8. char regex[] = "algoritmo";
  9. int t = 0;
  10. char final[999];
  11. for (int i=0;i<strlen(regex);i++)
  12. {
  13. if (testvogal(regex[i]) == 1){
  14. final[t] = regex[i];
  15. t++;
  16. }
  17. }
  18. printf(final);
  19. }
  20.  
  21. int testvogal(char p){
  22. char *vogal = "aeiou";
  23. for (int j=0;j<strlen(vogal);j++)
  24. {
  25. if (p == vogal[j])
  26. return 0;
  27. }
  28. return 1;
  29. }
  30.  
Success #stdin #stdout 0s 9432KB
stdin
Standard input is empty
stdout
lgrtm