this blog consists of lex ,yacc and c programs of Language Processor(compiler)
it is just an initiative to share my knowledge!!! specially to help my college juniors in LP lab(S7)
Saturday, December 4, 2010
LEX PROGRAM (for recognizing each character)
%{
%} %% .|\n { ECHO; } %% int yywrap() { return 1; } int main() { yylex(); }
No comments:
Post a Comment