Computer Science, asked by Shubh111111, 1 year ago

What are tokens in C++?

Answers

Answered by rakeshranjan385
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 yogeshpanjla
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