fork download
  1. %{
  2. #include <stdio.h>
  3.  
  4. int single = 0;
  5. int multi = 0;
  6. extern FILE *yyin; // Declare yyin
  7. %}
  8.  
  9. %%
  10. // Match single-line comments
  11. "//".* { ++single; }
  12.  
  13. // Match multi-line comments
  14. "/*"([^*]|\*+[^*/])*\*+"/" { ++multi; }
  15.  
  16. %%
  17.  
  18. int main(int argc, char **argv) { // Fix argument type
  19. yyin = fopen("abc.txt", "r");
  20. if (!yyin) {
  21. perror("Error opening file");
  22. return 1;
  23. }
  24. yylex();
  25. fclose(yyin); // Close file after reading
  26. printf("Number of single-line comments = %d\n", single);
  27. printf("Number of multi-line comments = %d\n", multi);
  28. return 0;
  29. }
  30.  
Success #stdin #stdout #stderr 0.03s 6864KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
ERROR: /home/lSjzH2/prog:29:1: Syntax error: Unexpected end of file
ERROR: '$runtoplevel'/0: Undefined procedure: program/0
   Exception: (3) program ? EOF: exit