fork download
  1. %{
  2. #include <stdio.h>
  3. #include <stdlib.h>
  4. #include "y.tab.h" // Header generated by yacc
  5. %}
  6. %%
  7. [0-9]+ { yylval = atoi(yytext); return NUMBER; }
  8. [+] { return PLUS; }
  9. [-] { return MINUS; }
  10. [*] { return MULTIPLY; }
  11. [/] { return DIVIDE; }
  12. \n { return EOL; }
  13. [ \t] ; // Ignore whitespace
  14. . { printf("Invalid character: %s\n", yytext); }
  15. %%
  16.  
  17. int main() {
  18. printf("Enter a mathematical expression (e.g., 3 + 4):\n");
  19. if (yyparse() == 0) {
  20. printf("Parsed successfully!\n");
  21. } else {
  22. printf("Parsing failed.\n");
  23. }
  24. return 0;
  25. }
  26.  
  27. int yyerror(char *s) {
  28. fprintf(stderr, "Error: %s\n", s);
  29. return 0;
  30. }
Success #stdin #stdout #stderr 0.02s 6952KB
stdin
3 + 4 * 2
stdout
Standard output is empty
stderr
ERROR: /home/AeruCj/prog:2:1: Syntax error: Operator expected
ERROR: /home/AeruCj/prog:30:0: Syntax error: Unexpected end of file
ERROR: '$runtoplevel'/0: Undefined procedure: program/0
   Exception: (3) program ?    Exception: (3) program ? EOF: exit