0
59kviews
Construct predictive passing table for following grammar.

$S - \gt A \\ A-\gt aB| Ad \\ B-\gt bBC|f \\ C→g$


1 Answer
3
1.8kviews

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 3 others joined a min ago.

Please log in to add an answer.