LEX Program to count Words, lines and characters of input file
Problem Statement:-
Write a program using Lex specifications to implement lexical analysis phase of the compiler to count no. of words, lines, and characters of the given input file.
Source Code:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
vaibhav kumbhar | |
3434 | |
PICT |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%{ | |
int nlines,nwords,nchars; | |
%} | |
%% | |
\n { | |
nchars++;nlines++; | |
} | |
[^ \n\t]+ {nwords++, nchars=nchars+yyleng;} | |
. {nchars++;} | |
%% | |
int yywrap(void) | |
{ | |
return 1; | |
} | |
int main(int argc, char*argv[]) | |
{ | |
yyin=fopen(argv[1],"r"); | |
yylex(); | |
printf("Lines = %d\nChars=%d\nWords=%d",nlines,nchars,nwords); | |
return 0; | |
} |
what is use of yyleng in this programm, plzz explain?
ReplyDelete