Compiler Design (2170701)

BE | Semester-7   Winter-2018 | 15/11/2018

Q5) (b)

Give the translation scheme that converts infix to postfix expression for the following grammar and also generate the annotated parse tree for input string : “id+id*id”
E -> E+T | T
T -> T*F | F
F -> id

NO SOLUTION FOUND