Untitled

 avatar
unknown
plain_text
4 years ago
218 B
4
Indexable
%{
include<stdio.h>
%}
%%
">"|"<"|"<="|"=="|"!="|"=!"{printf("relational operator");}
.*{printf("not relational");}
%%

int main()
{
printf("enter the input :\");
yylex();
}

int yywrap()
{return 1;
}
Editor is loading...