Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Given the following test case and regular expressions, there will be an error message unmatched input. Explain what caused this error. How to correct the
Given the following test case and regular expressions, there will be an error message unmatched input. Explain what caused this error. How to correct the lexer so that it can still count the identifiers etc., even though the input contains illegal characters? BEGIN xl & O END 4% YYINITIAL>\"[^\"]*\" {quotedstring++;} YYINITIAL KEYWORD) (keyword++ YYINITIAL >[a-zA-Z] [a-zA-ZO-9]* id++) YYINITIAL >[0-9+ num++ YYINITIAL" yybegin (comment):) comment >" * */" {yybegin(YYINITIAL);} Whether the unmatched input will occur for the following input? Explain your answer BEGIN xl "&" "O" END
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started