Home / Questions / What is a token?
Explanatory Question

What is a token?

👁 884 Views
📘 Detailed Answer
🕒 Easy to Read
Read the answer carefully and go through the related questions on the right side to improve your understanding of this topic.

Answer with Explanation

The Token is an identifier. It can be constant, keyword, string literal, etc. A token is the smallest individual unit in a program. C has the following tokens:

  1. Identifiers: Identifiers refer to the name of the variables.
  2. Keywords: Keywords are the predefined words that are explained by the compiler.
  3. Constants: Constants are the fixed values that cannot be changed during the execution of a program.
  4. Operators: An operator is a symbol that performs the particular operation.
  5. Special characters: All the characters except alphabets and digits are treated as special characters.