Computer Science, asked by PranayVerma2517, 1 year ago

Define toknes in c. List all the toknes avilable n c languagei

Answers

Answered by alokthehero469
0

Answer:

A token is the smallest element of a C++ program that is meaningful to the compiler. The C++ parser recognizes these kinds of tokens: identifiers, keywords, literals, operators, punctuators, and other separators. A stream of these tokens makes up a translation unit.

Explanation:

five types

There are five types of tokens in C++ language: Keywords. Variables/Identifiers. Constants/Literals

Similar questions