diff --git a/README.md b/README.md index 61037a2..5773241 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,7 @@ # Lexical_Analyzer -Lexical Analyzer is made with Lex program able to identify all the token is C Language. - +Lexical analyzer reads the characters from source code and convert it into tokens. +The lexical analyzer is the part of the compiler that detects the token of the program and sends it to the syntax analyzer. +Token is the smallest entity of the code, it is either a keyword, identifier, constant, string literal, symbol. Concept required:- 1) File Concept of C. 2) Lex Program