Friday, April 12, 2019

Lex Program for Regular Expression that accept either ‘a’ or ‘b’


%{
#include<stdio.h>
%}
%%
[ba]* {printf("valid");}
.* {printf("invalid");}
%%
main()
{
yylex();
}

ScreenShot:

No comments:

Post a Comment