Advertisement
Guest User

Code

a guest
Nov 17th, 2019
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1.  
  2. %option noyywrap
  3. %{
  4. #include<stdio.h>
  5. int cnt1=0,cnt2=0;
  6.  
  7.  
  8. %}
  9.  
  10. %%
  11.  
  12.  
  13. (a|b)*abbb(a|b)* printf("recognized");
  14.  
  15. .* printf("NO recognized");
  16.  
  17.  
  18. %%
  19. int main()
  20. {
  21.  
  22.  
  23. yylex();
  24.  
  25. return 0;
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement