0
what are c++ tokens
3 ответов
+ 4
tokens are the smallest elements of
the program
->tokens are of 5 types
* keywords
*identifiers
*constants
*operators
*special characters
+ 1
Hi fazal, "C++ tokens" refers to words in the C++ language. "Token" is the word used in compiler theory and especially in context of parsers that refers to an element of the language that makes sense. This can be a type, a name of a variable or a class, the plus sign and many, many others.
+ 1
c++ tokens are literals such as integer string boolean character