Tag Archives: Token

Constants in C | Set 2

Prerequisite – Constants in C Constants refer to fixed values that the program may not alter during its execution. These fixed values are also called literals. Constants can be of any of the basic data types. Types of Constant in C : C supports several types of constants in C language as Character Constants, i.e., Single Character Constant,… Read More »

Identifier in C

A token is the smallest element of a program that is meaningful to the compiler. Tokens can be classified as follows: Keywords Identifiers Constants Strings Special Symbols Operators Identifiers Identifiers are names for entities in a C program, such as variables, arrays, functions, structures, unions and labels. An identifier can be composed only of uppercase, lowercase letters, underscore… Read More »