Skip to content

Latest commit

 

History

History
15 lines (9 loc) · 922 Bytes

README.md

File metadata and controls

15 lines (9 loc) · 922 Bytes

CaseStudy

Case study for System Software and Compiler Design

Problem Statement:: To Create a Symbol Table for keywords, Identifiers, Operators for language-c.


------------------------------------------------------Solution Procedure-----------------------------------------------------------

The "LA.py" program does the lexical analysis of a program that has been written in "program.c".

The file "result.c" is used to store the intermediate program, that is generated by removing blank spaces(leading and trailing,i.e.. no identation) and comment lines. "result.c" is used to simplify the code in order to search for the necessary patterns easily.