CSIT_Labs

Compiler Design and Construction

Lab 1:

  1. Write a program to check whether the input is digit or not
  2. Write a program to identify tokens

Lab 2:

Lab 3:

  1. Write a program to check valid identifier
  2. Write a program to check valid comment or not

Lab 4:

Lab 5:

  1. Write a program to find the first of given grammar

    S->L+R
    S->R
    L->*R
    L->a
    R->L
    
  2. 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:

Lab 8:

Lab 9: