Based on the following grammar, generate a sentence by derivation . The sentence
ID: 3744489 • Letter: B
Question
Based on the following grammar, generate a sentence by derivation. The sentence cannot be int x, y; int sum; char a, b, c, n;
<Var_Dcls> -> <Var_Dcl> | <Var_Dcls> <Var_Dcl>
<Var_Dcl> -> <Type> <Vars> ;
<Var> => <Var>, <Var> | <Var>
<Type> -> int | char
<Var> -> x | y | sum | a | b | c | n