what are
c tokens? explain
constants and variables
Answers
Explanation:
A token is a source program text that the compiler does not break down into component elements.
Example
number = number + 1;
The tokens are,
number - identifier (variable)
= - operator
+ - operator
1 - constant
; - punctuation
ANSWER:
C Tokens are the smallest building block or smallest unit of a C program. The compiler breaks a program into the smallest possible units and proceeds to the various stages of the compilation, which is called token.
EXPLANATION:
Tokens in C is the most important element to be used in creating a program in C. We can define the token as the smallest individual element in C.
VARIABLES- a variable is an identifier that denotes a storage which is used to store a value or constant.it does not change during program execution
HOPE IT HELPS YOU
MARK ME BRAINLIST ❤