Advertisement
Guest User

a replace z

a guest
Nov 17th, 2019
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 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] printf("Z");
  14.  
  15.  
  16.  
  17. %%
  18. int main()
  19. {
  20.  
  21.  
  22. yylex();
  23.  
  24. return 0;
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement