Hi guys, in this section we will learn a small concept i.e. Tokens. So without wasting time let's get started.
What Is Token?
Tokens are the smallest element of a program that is meaningful to the compiler.
Let us see an example:
int a,b;
Here 'int', 'a', 'b', ',', ';' all are Tokens.
Various types of tokens i.e. keywords, identifiers. literals, operators, etc are combined to write programs and are compiled by the compiler.
That's all for this section, you can also watch videos on YouTube for more information about this concept.