Grammar
S → s
| c S C.
C → e S
| .
The grammar is ambiguous. Some sentences with ambiguous derivation: c c s e s, c c c s e s, c c s e c s, c c s e c s e s.

Some sentences generated by this grammar: {s, c s, c c s, c c c s, c s e s, c s e c s, c c s e s, c c c s e s, c s e c c s, c c s e c s, c c s e s e s, c s e c s e s, c c s e c s e s, c c c s e s e s, c s e c c s e s}

nonterminalfirst setfollow set nullableendable
S s c e $noyes
C e e $yesyes

The grammar is not LL(1) because:



Return home to enter a new grammar.