fork download
  1. %{
  2. #include<stdio.h>
  3. %}
  4. %%
  5. else |
  6. while |
  7. for |
  8. if |
  9. do |
  10. switch{
  11. printf("%s is a keyword\n",yytext);
  12. return(0);
  13. }
  14. [a-zA-Z_]+[a-zA-Z0-9_]*{
  15. printf("%s is a identifier\n",yytext);
  16. return(0);
  17. }
  18.  
  19. [=|+|-|*|/]*{
  20. printf("%s is a operator\n",yytext);
  21. return(0);
  22. }
  23. .*{
  24. printf("%s is not an identifier\n",yytext);
  25. return(0);
  26. }
  27. %%
  28. int main(){
  29. printf("enter a character/word. \n");
  30. yylex();
  31. }
  32. yywrap()
  33. {
  34. }
Success #stdin #stdout #stderr 0.02s 6920KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
ERROR: /home/XhnIwv/prog:34:0: Syntax error: Unexpected end of file
ERROR: '$runtoplevel'/0: Undefined procedure: program/0
   Exception: (3) program ? EOF: exit