Skip to content

Latest commit

 

History

History
18 lines (16 loc) · 1.67 KB

README.md

File metadata and controls

18 lines (16 loc) · 1.67 KB

LPCC

Lab solution of LANGUAGE PROCESSOR AND COMPILER CONSTRUCTION subject

Question Solution✅
Generate Symbol table, Literal table, Pool table & Intermediate code of a two-pass Assembler for the given source code. Display Errors Solution
Design suitable data structures & implement FIRST pass of a two-pass Macro processor. Solution
For parts of speech for subset of ENGLISH language without using SYMBOL TABLE. Solution
For parts of speech for subset of ENGLISH language with SYMBOL TABLE Solution
Write Lexical Analyser without using SYMBOL TABLE for subset of 'C' programming language Solution
Write Lexical Analyser with SYMBOL TABLE for subset of 'C' programming language. Solution
To evaluate an arithmetic expression using YACC tool Solution
To evaluate or check built-in functions using YACC tool Solution
To recognize valid variable name using YACC tool Solution
Write a (LEX/YACC, C/C++, JAVA, Python) program to generate three address code for the simple expression Solution
Write a (LEX/YACC, C/C++, JAVA, Python) program to generate three address code for the if else Solution
Build a lexer, using LEX, for finding how much the given document say A is related to another document B (Hint: ignoring words like "is, am, a , the , if, etc." in document A, store the remaining words and search these words in document B. Decide on a criteria, that if say 40 % words in A exist in B then both are similar. Solution