Computer Science, asked by priyast2805, 8 months ago

What is meant by token? Name the token available in C++.​

Answers

Answered by ss3901974
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 shilpimanish28
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