Untitled
Anonymous
plain_text
02/01/2021 6:23 AM
292 B
18
Indexable
%{
include<stdio.h>
%}
%%
">"|"<"|"<="|"=="|"!="|"=!"{printf("relational operator");}
.*{printf("not relational");}
%%
int main()
{
printf("enter the input :\");
yylex();
}
int yywrap()
{return 1;
}
Editor is loading...