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.obj |
|
Answer» Right option is (b) Myfile.yy.c For explanation: This Produce the filr “myfile.yy.c” which we can then compile with g++. |
|