%{
/* Program to recognize a C program */
int COMMENT = 0;
int cnt = 0;
%}
/* Definitions section */
identifier [a-zA-Z_][a-zA-Z0-9_]* // Updated to allow underscores in identifiers
%%
/* Preprocessor Directives */
#.* { printf("\n%s is a PREPROCESSOR DIRECTIVE", yytext); }
/* Keywords */
int
|float|char
|double
|while
|for
|do
|if
|break
|continue
|void
|switch
|case
|long
|struct
|const
|typedef
|return
|else
|goto
{ printf("\n\t%s is a KEYWORD", yytext); }
/* Comments */
"/*" { COMMENT = 1; cnt++; } // Enter comment block and increment comment counter
"*/" { COMMENT = 0; }
/* Function Definition */
{identifier}\({ { if (!COMMENT) printf("\n\nFUNCTION\n\t%s", yytext); }
/* Blocks */
\{ { if (!COMMENT) printf("\nBLOCK BEGINS"); }
\} { if (!COMMENT) printf("\nBLOCK ENDS"); }
/* Identifiers */
{identifier}(\[[0-9]*\])? { if (!COMMENT) printf("\n%s is an IDENTIFIER", yytext); }
/* String Literals (handles escape sequences) */
\"([^\\\"]|\\.)*\" { if (!COMMENT) printf("\n\t%s is a STRING", yytext); }
/* Numbers (Integers) */
[0-9]+ { if (!COMMENT) printf("\n\t%s is a NUMBER", yytext); }
/* Assignment Operator */
= { if (!COMMENT) printf("\n\t%s is an ASSIGNMENT OPERATOR", yytext); }
/* Relational Operators */
<=|>=|<|==|> { if (!COMMENT) printf("\n\t%s is a RELATIONAL OPERATOR", yytext); }
/* Semicolon (End of Statement) */
\; { if (!COMMENT) ECHO; printf("\n"); }
/* Catch-all for unmatched characters */
. { if (!COMMENT) printf("\nUnmatched character: %s", yytext); }
%%
/* Main function to read the input file and start lexical analysis */
int main(int argc, char **argv) {
if (argc > 1) {
FILE *file;
file = fopen(argv[1], "r");
if (!file) {
printf
("Could not
open %s\n", argv[1]); exit(0);
}
yyin = file;
}
yylex(); // Start lexical analysis
printf("\n\nTotal No. of comments are %d\n", cnt);
return 0;
}
/* Handle end of input */
int yywrap() {
return 1;
}