0
what are tokens.?
4 Answers
+ 2
token is smallest individual unit...
like cell...in living world..
+ 1
Smallest individual units in the program is known as tokens.
C++ has five types of tokens :
1 keywords
2 identifier
3 literals
4 puntuators
5 operators.
all the bestđ
0
@Darsh we also have trigraph tokens and bigraph tokens
0
@GeoDash
Just an addition to what you said: The trigraphs will likely be removed in C++17 as they play their part in making code hard to understand. Other languages can do without them and produce fast code (see FORTRAN).