0 0 votes Does Follow and First operation always apply on non left recursive grammar? Compiler Design compiler-design first-and-follow + – Sajal Mallick 436 views answer comment Share Follow Print 0 reply Please log in or register to add a comment.
1 1 vote First and Follow are used for creating LL(1) parser table which accepts non-left recursive grammar. But, they can be applied for left recursive grammar as well. Like, E → E + E | id first(E) = {id} follow(E) = {+, $} mili_dhara answered Nov 15, 2023 mili_dhara comment Share Follow 0 reply Please log in or register to add a comment.