0
23kviews
Construct predictive passing table for following grammar.

S-> A

A-> aB| Ad

B->bBC|f

C→g

This question appears in Mumbai University > System programming and compiler construction subject

Marks: 10 M

Year: May 2015

1 Answer
2
841views

Recursive decent parsing

  • Recursive descent is a top-down parsing technique that constructs the parse tree from the top and the input is read from left to right.
  • It uses procedures for every terminal and non-terminal entity.
  • This parsing technique recursively parses the input to make a parse tree, which may …

Create a free account to keep reading this post.

and 5 others joined a min ago.

Please log in to add an answer.