CSE 401 Compiler design
1
2
3
To write and execute a C program to implement the
lexical analyzer.
6
7
To implement the lexical analyzer using lex tool for a subset of C language.
8
9
1
0
1
1
1
2
1
3
1
4
1
5
1
6
1
7
1
8
1
9
2
0
2
1
To implement a recursive descent parser in a C program.
To implement a recursive descent parser in a C program.
To write a c program that implement the construction of top-down parsing
table.
To write a program in linux to generate intermediate code using LEX and YACC.
To convert the given intermediate Code into assembly language instruction using c program.
Write a yacc program that accepts a regular expression as input and
produce its parse tree as output.
Write a C program to implement the syntax-directed definition of if E
then S1 and if E then S1 else S2.
YACC program to recognize strings aaab, abbb, ab and a using the
grammar (anbn, n>= 0).