fork download
  1. %%writefile program.y
  2.  
  3. %{
  4. #include<stdio.h>
  5. #include<stdlib.h>
  6. %}
  7. %token DIGIT LETTER UND NL
  8. %%
  9. stmt: variable NL {printf("Valid Identifier\n");exit(0);}
  10. variable: LETTER alphanumeric;
  11. alphanumeric: LETTER alphanumeric
  12. | DIGIT alphanumeric
  13. | UND alphanumeric
  14. | LETTER
  15. | DIGIT
  16. | UND;
  17. %%
  18.  
  19. int yyerror(){
  20. printf("Invalid Identifier\n");
  21. exit(0);
  22. }
  23.  
  24. void main(){
  25. printf("Enter the variable name: ");
  26. yyparse();
  27. }
Success #stdin #stdout #stderr 0.03s 6852KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
ERROR: /home/oyaZAk/prog:27:0: Syntax error: Unexpected end of file
ERROR: '$runtoplevel'/0: Undefined procedure: program/0
   Exception: (3) program ? EOF: exit