Untitled
unknown
plain_text
5 years ago
218 B
7
Indexable
%{
include<stdio.h>
%}
%%
">"|"<"|"<="|"=="|"!="|"=!"{printf("relational operator");}
.*{printf("not relational");}
%%
int main()
{
printf("enter the input :\");
yylex();
}
int yywrap()
{return 1;
}
Editor is loading...