Abdul Marketing

VULCANIZED FIBER UNIT OPERATOR | Memphis | United States

I am working as VULCANIZED FIBER UNIT OPERATOR.



List of Contributed Questions (Sorted by Newest to Oldest)

No Question(s) Posted yet!

List of Contributed Answer(s) (Sorted by Newest to Oldest)

Answer # 1 #

A lexical analyzer, also called a scanner, is the first phase of a compiler. Its job is to read the raw source code (a sequence of characters) and convert it into a sequence of tokens. Tokens are the meaningful building blocks of a programming language, such as keywords, identifiers, operators, literals, and punctuation. For example, the code int x = 10; would be broken into tokens like [int] [x] [=] [10] [;].

Answered for the Question: "What is lexical analyzer in compiler design?"