From 8fb86efd72e26d7a59978831f5014d8be81804fa Mon Sep 17 00:00:00 2001 From: Aayush-eng <61198949+Aayush-eng@users.noreply.github.com> Date: Fri, 2 Oct 2020 02:00:16 +0530 Subject: [PATCH] Update README.md --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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