Open In App

GATE | GATE CS 1996 | Question 68

Improve
Improve
Like Article
Like
Save
Share
Report

Consider the syntax-directed translation schema (SDTS) shown below:

E → E + E         {print “+”}
E → E ∗ E         {print “.”}
E → id            {print id.name}
E → ( E )

An LR-parser executes the actions associated with the productions immediately after a reduction by the corresponding production. Draw the parse tree and write the translation for the sentence
(a+b)(c+d), using the SDTS given above.


Answer:

Explanation:

Quiz of this Question
Please comment below if you find anything wrong in the above post


Last Updated : 06 Nov, 2017
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads