What is meant by token? Name the token available in C++.
Answers
Answered by
8
Answer:
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.
Answered by
10
Explanation:
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
Similar questions