InterviewSolution
Saved Bookmarks
| 1. |
Output file of Lex is __________ the input file is Myfile.(a) Myfile.e(b) Myfile.yy.c(c) Myfile.lex(d) Myfile.objI got this question in final exam.My question is taken from Syntax Analyser topic in portion Contextfree Grammar and Syntax Analysis of Compiler |
|
Answer» RIGHT OPTION is (b) Myfile.yy.c For explanation: This Produce the filr “myfile.yy.c” which we can then COMPILE with G++. |
|