What are tokens in C?
----------------------------------------------
Tokens are building blocks of C programming language. Token is the smallest unit in a program. Tokens are something which are understood by compiler and can be compiled. All the below items fall under tokens.
- keywords
 - strings
 - identifiers
 - operators
 - special characters
 - constants
 

0 Comments