fork download
  1. %{
  2. #include <stdio.h>
  3. #include <stdlib.h>
  4.  
  5. int vowel_count = 0;
  6. int consonant_count = 0;
  7. %}
  8.  
  9. %option noyywrap
  10.  
  11. %%
  12.  
  13. // Match vowels (both uppercase and lowercase)
  14. [aeiouAEIOU] { vowel_count++; }
  15.  
  16. // Match consonants (both uppercase and lowercase)
  17. [b-df-hj-np-tv-zB-DF-HJ-NP-TV-Z] { consonant_count++; }
  18.  
  19. // Ignore whitespace and punctuation
  20. [ \t\n] ; // Ignore whitespace
  21. . ; // Ignore any other character
  22.  
  23. %%
  24.  
  25. // Main function
  26. int main(int argc, char **argv) {
  27. yylex(); // Start the lexer
  28. printf("Total Vowels: %d\n", vowel_count);
  29. printf("Total Consonants: %d\n", consonant_count);
  30. return 0;
  31. }
Success #stdin #stdout #stderr 0.04s 6964KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
ERROR: /home/VS7grQ/prog:2:1: Syntax error: Operator expected
ERROR: /home/VS7grQ/prog:31:0: Syntax error: Unexpected end of file
ERROR: '$runtoplevel'/0: Undefined procedure: program/0
   Exception: (3) program ? EOF: exit