I need to construct a CFG for the language which can generate any phrase containing all symbols.
S -> ABC
A -> a,b,c,d.........z | B
B -> .,?,-,=,.... | C
C -> A | epsilon
I think it's not right. is there anyway to make it work so it can generate any phrase?