Friday, April 12, 2019

Lex Program for Regular Expression that accepts ‘\n’


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


ScreenShot:

No comments:

Post a Comment