fork download
  1. /*lex program to count number of words*/
  2. %{
  3. #include<stdio.h>
  4. #include<string.h>
  5. int i = 0;
  6. %}
  7.  
  8. /* Rules Section*/
  9. %%
  10. ([a-zA-Z0-9])* {i++;} /* Rule for counting
  11.   number of words*/
  12.  
  13. "\n" {printf("%d\n", i); i = 0;}
  14. %%
  15.  
  16. int yywrap(void){}
  17.  
  18. int main()
  19. {
  20. // The function that starts the analysis
  21. yylex();
  22.  
  23. return 0;
  24. }
Success #stdin #stdout #stderr 0.02s 6828KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
ERROR: /home/0XVoMI/prog:24:0: Syntax error: Unexpected end of file
ERROR: '$runtoplevel'/0: Undefined procedure: program/0
   Exception: (3) program ? EOF: exit