The smallest element in C++ Program that is meaningful to the Compiler is known as
Answers
Answered by
1
Explanation:
a token is the smallest element of a program that is meaningful to the compleir
Answered by
3
Explanation:
The text of a C++ program consists of tokens and white space. A token is the smallest element of a C++ program that is meaningful to the compiler. The C++ parser recognizes these kinds of tokens:
Keywords
Identifiers
Numeric, Boolean and Pointer Literals
String and Character Literals
User-Defined Literals
Operators
Punctuators
Tokens are usually separated by white space, which can be one or more:
Blanks
Horizontal or vertical tabs
New lines
Form feeds
Comments
Basic source character set
Similar questions