C Tokens
C Tokens
C Tokens
Identifiers, Constants,
Variables)
Tokens in C
• Since keywords are referred names for compiler, they can’t be used
as variable name.
There are following 32 keywords in C:
• Data items that remains same i.e. their value during do not
changes during the program execution.
• For example,
3
-6.4
String Literals
• Thus, the size of the string is the total number of characters plus one for
the null character.
Operators
• It has some special meaning . Thus, cannot be used for some other
purpose [] () {} , ; : * … = # are examples of punctuators
• Braces{}: These opening and ending curly braces marks the start and
end of a block of code containing more than one executable statement.
• Invalid identifiers
• 4_abc
• 55Delhi
• Thanks