in Compiler Design recategorized by
1,278 views
1 vote
1 vote

$\text{YACC}$ builds up

  1. $\text{SLR}$ parsing table
  2. Canonical $\text{LR}$ parsing table
  3. $\text{LALR}$ parsing table
  4. None of these
in Compiler Design recategorized by
by
1.3k views

1 Answer

1 vote
1 vote
Yet Another Compiler Compiler (YAAC) builds up LALR(1) (LookAhead, Left-to-right, Rightmost derivation producer with 1 lookahead token) parsing table.

So C is correct.

1 comment

YACC builds up the LALR parsing table and helps to reduce the conflict by giving the priority to shift on reduce if SR conflict occurs.
0
0
Answer: