fork download
  1. %{
  2. #include <stdio.h>
  3. extern FILE *yyin, *yyout; // External file pointers for input and output
  4. %}
  5.  
  6. %%
  7. . { fprintf(yyout, "%s", yytext); } // Print each matched character to output file
  8. %%
  9.  
  10. int main() {
  11. extern FILE *yyin, *yyout;
  12.  
  13. // Open input.txt for reading and output.txt for writing
  14. yyin = fopen("input.txt", "r");
  15. if (!yyin) {
  16. perror("Error opening input file");
  17. return 1;
  18. }
  19.  
  20. yyout = fopen("output.txt", "w");
  21. if (!yyout) {
  22. perror("Error opening output file");
  23. return 1;
  24. }
  25.  
  26. yylex(); // Start lexical analysis
  27. fclose(yyin); // Close input file after processing
  28. fclose(yyout); // Close output file after processing
  29.  
  30. return 0;
  31. }
  32.  
Success #stdin #stdout #stderr 0.03s 6888KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
ERROR: /home/AeXTmY/prog:2:1: Syntax error: Operator expected
ERROR: /home/AeXTmY/prog:31:1: Syntax error: Unexpected end of file
ERROR: '$runtoplevel'/0: Undefined procedure: program/0
   Exception: (3) program ? EOF: exit