What do you mean by C++ Tokens?
Answers
Answered by
2
- tokens may be define as the smallest element which has its own meaning.
Types
- keywords
- identifiers
- constants
- punctuators
- operators
Answered by
0
A token is the smallest element of a C++ program that is meaningful to the compiler. The C++ parser recognizes these kinds of tokens : identifiers, keywords , literals , operators , punctuators , and other separators. A stream of these tokens makes up a translation unit.
Similar questions