![]() |
Define C tokens?In: Computers, C Programming |
[Edit] |
[Edit]
In a C source program, the basic element recognized by the compiler is the "token." A token is source-program text that the compiler does not break down into component elements.
Syntax
- token:
- keyword
The keywords, identifiers, constants, string literals, and operators described in this section are examples of tokens. Punctuation characters such as brackets ([ ]), braces ({ }), parentheses ( ( ) ), and commas (,) are also tokens.
First answer by ID2057475109. Last edit by ID2057475109. Question popularity: 1 [recommend question]




