Lab 1:
Lab 2:
Lab 3:
Lab 4:
Lab 5:
Write a program to find the first of given grammar
S->L+R
S->R
L->*R
L->a
R->L
Write a program to find the follow of the given grammar
R->aS
R->(R)S
S->+RS
S->aRS
s->as
Lab 6:
Lab 7:
Write a program to implement Shift Reduce Parsing
E->E+E
E->E/E
E->E*E
E->a/b
Input symbol: a+b+a
Lab 8:
Lab 9: