Sri27119

cd3 calc lex

Nov 20th, 2024
16
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. %{
  2.  
  3. #include <stdio.h>
  4. #include "y.tab.h"
  5. int c;
  6. extern int yylval;
  7. %}
  8. %%
  9. " " ;
  10. [a-z] {
  11. c = yytext[0];
  12. yylval = c - 'a';
  13. return(LETTER);
  14. }
  15. [0-9] {
  16. c = yytext[0];
  17. yylval = c - '0';
  18. return(DIGIT);
  19. }
  20. [^a-z0-9\b] {
  21. c = yytext[0];
  22. return(c);
  23. }
  24.  
Add Comment
Please, Sign In to add comment