What are tokens in C++?
Answers
Answered by
1
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.
Shubh111111:
Thnx
Answered by
1
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.
Similar questions