fork download
  1. %{
  2. #include<stdio.h>
  3. int w=0; // Word count
  4. int n=0; // Number count
  5. int l=0; // Line count
  6. int t=0; // Tab count
  7. int c=0; // Character count
  8. int s=0; // Space count
  9. %}
  10.  
  11. %%
  12.  
  13. [\n]+ { l++; } // Count newlines (lines)
  14. [0-9]+ { n++; } // Count numbers
  15. [a-zA-Z]+ { w++; } // Count words (sequences of alphabetic characters)
  16. [ \t]+ { t++; s++; } // Count spaces and tabs (combining space and tab counting)
  17. . { c++; } // Count any other character (including spaces, punctuation, etc.)
  18.  
  19. %%
  20.  
  21. int main() {
  22. yylex(); // Start lexing the input
  23. printf("no. of words: %d\n", w);
  24. printf("no. of numbers: %d\n", n);
  25. printf("no. of lines: %d\n", l);
  26. printf("no. of tabs are: %d\n", t);
  27. printf("total no. of characters are: %d\n", c);
  28. printf("total spaces in input are: %d\n", s);
  29. return 0;
  30. }
  31.  
Success #stdin #stdout #stderr 0.03s 6948KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
ERROR: /home/B36VtL/prog:2:1: Syntax error: Operator expected
ERROR: /home/B36VtL/prog:30:1: Syntax error: Unexpected end of file
ERROR: '$runtoplevel'/0: Undefined procedure: program/0
   Exception: (3) program ? EOF: exit