Tokens in C

In C language the smallest unit of a program is called Token. It is the most important element to be used in creating a program in C. Tokens in C is the building block or the basic component for creating a program in C language.

Classification of tokens in C

Tokens in C language can be divided into the following categories:

Tokens in C
  • Keywords
  • Identifiers
  • Strings
  • Operators
  • Constant
  • Special Characters

Let's understand each token one by one.

Keywords

Keywords in C can be defined as the pre-defined or the reserved words that are already defined within the C language and cannot be changed. Since keywords are the pre-defined words used by the compiler, so they cannot be used as the variable names. C language supports 32 keywords given below.

autodoubleintstruct
breakelselongswitch
caseenumregistertypedef
charexternreturnunion
constfloatshortunsigned
continueforsignedvoid
defaultgotosizeofvolatile
doifstaticwhile
Identifiers

Identifiers are user-defined words used for naming variables, functions, arrays, structures, etc. An Identifiers consists of uppercase letters, lowercase letters, underscore, or digits, but the starting letter should be either an underscore or an alphabet. Identifiers cannot be used as keywords.

Rules for constructing identifiers in C are given below

  • The length of the identifiers should not be more than 31 characters.
  • Identifiers can be made up of letters and digits, and are case-sensitive.
  • The first character of an identifier must be a letter, which includes underscore (_).
  • The C language has 32 keywords which are reserved and may not be used as identifiers (eg, int,while, etc).
  • Commas or blank spaces cannot be specified within an identifier.
Strings

Strings in C are always represented as an array of characters having null character '\0' at the end of the string. This null character denotes the end of the string. Strings are enclosed within double quotes, while characters are enclosed within single characters. The size of a string is a number of characters that the string contains.

In the below exaple strings are represented in different ways:

char a[10] = "rookienerd"; // The compiler allocates the 10 bytes to the 'a' array.

char a[] = "rookienerd"; // The compiler allocates the memory at the run time.

char a[10] = {'r','o','o','k','i','e','n','e','r','d','\0'}; // String is represented in the form of characters.

Operators

Operators in C is a symbol that tells the compiler to perform a certain mathematical or logical manipulation. Operators are used in programs to manipulate the data and variables. C language supports a rich set of built in operators.

The data items on which the operators are applied are known as operands. Operators are applied between the operands. Depending on the number of operands, operators are classified as follows.

Unary Operator

A unary operator is an operator applied to the single operand. For example: increment operator (++), decrement operator (--), sizeof, (type)*.

Binary Operator

The binary operator is an operator applied between two operands. The following is the list of the binary operators:

  • Arithmetic Operators
  • Relational Operators
  • Shift Operators
  • Logical Operators
  • Bitwise Operators
  • Conditional Operators
  • Assignment Operator
  • Misc Operator
Constants

Constants are those tokens in C language whose value is fixed and does not change during the execution of a program.

There are two ways of declaring constant:

  • Using const keyword
  • Using #define pre-processor

Types of constants in C

ConstantExample
Integer constant10, 11, 34, etc.
Floating-point constant45.6, 67.8, 11.2, etc.
Octal constant011, 088, 022, etc.
Hexadecimal constant0x1a, 0x4b, 0x6b, etc.
Character constant'a', 'b', 'c', etc.
String constant"java", "c++", ".net", etc.
Special characters

Some special characters are used in C, and they have a special meaning which cannot be used for another purpose.

  • Square brackets [ ]: The opening and closing brackets represent the single and multidimensional subscripts.
  • Simple brackets ( ): It is used in function declaration and function calling. For example, printf() is a pre-defined function.
  • Curly braces { }: It is used in the opening and closing of the code. It is used in the opening and closing of the loops.
  • Comma (,): It is used for separating for more than one statement and for example, separating function parameters in a function call, separating the variable when printing the value of more than one variable using a single printf statement.
  • Hash/pre-processor (#): It is used for pre-processor directive. It basically denotes that we are using the header file.
  • Asterisk (*): This symbol is used to represent pointers and also used as an operator for multiplication.
  • Tilde (~): It is used as a destructor to free memory.
  • Period (.): It is used to access a member of a structure or a union.
Related Tutorial
Follow Us
https://www.facebook.com/Rookie-Nerd-638990322793530 https://twitter.com/RookieNerdTutor https://plus.google.com/b/117136517396468545840 #
Contents +