Advertisement
Sri27119

cd1.2

Nov 20th, 2024
15
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. %option noyywrap
  2. %%
  3. break|float|int|if|char|for|return|void|struct|else printf("keywords");
  4. ^[a-zA-Z_][a-zA-Z0-9_]* printf("valid identifier");
  5. ^[^a-zA-Z_]+[a-zA-Z0-9_]* printf("invalid identifier");
  6. .;
  7. %%
  8.  
  9. int main()
  10. {
  11.  
  12. yylex();
  13.  
  14. }
  15.  
  16.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement