C – Tokens2 min read

What is Token in C?

The basic and smallest unit of a C program is called C tokens. This tokens are meaningful to the compiler. Compiler breaks the programs into smallest unit that is the tokens and proceed various compilation stages.

There are total six tokens in C Programming language.

token in C
Tokens in C

Keywords and Identifiers:

Keywords are defined as the predefined, reserved word that has a fixed meaning and those meanings cannot be changed. There are a total of 32 keywords in ‘C’.

The table below represent 32 Keyword in the C Programming language:

autodoubleintstruct
breakelselongswitch
caseenumregistertypedef
charexternreturnunion
constfloatshortunsigned
continueforsignedvoid
defaultgotosizeofvolatile
doifstaticwhile

Identifiers are nothing but the name assigned to the entities in the Program such as assigned to variables, functions in a program, Union, etc. Identifiers are user-defined in C Programming. These identifiers are case-sensitive, the first character must start with an alphabet or underscore, and no white spaces are allowed.

Operators:

Operators are the mathematical symbols that are used to perform a mathematical operation on operands. These symbols tell the compiler to perform respective operations. An expression is formed by joining constants and variables in C programming.

Example: + symbol used to perform addition between two or more than two operands. Other symbols are: -, *, /, etc.

Strings:

C programming defined string as a sequence or array of characters that are terminated by character ‘\0‘.
Example: str[]= “Strings Example”. These are enclosed within ” “.

Constants:

From the name constant, we can say that these are fix values that are used in a program and its values remain the same during the entire execution of the program. Also, we cannot change the value in the middle of the program.
These constants may be any of the data-types present in C such as integer, float, boolean, etc.

Special Characters in C:

There are few special characters or special symbol in C programming language that has some special meaning and purposes.

They are: [] () {}, ; * = #.

Example: [] (opening and closing brackets) is used for array elements reference.

MORE

Find the output ab, cd, ef, g for the input a,b,c,d,e,f,g in Javascript and Python

In this tutorial, we will write a program to find a pairs of elements from an array such that for the input [a,b,c,d,e,f,g] we will …
Read More

String Pattern Programs in C

In this tutorial, we will write various C pattern programs for String. Before that, you may go through the following topics in C. for loop …
Read More

Java Program to Find pair of Integers in Array whose sum is given Number

In this tutorial, we will write a program to find a pair of elements from an array whose sum equals a given number in java …
Read More

Program to Print Diamond Alphabet Patterns in C

In this tutorial, we will learn to write a C program to print Diamond patterns using alphabets/characters. However, in this tutorial, we will create a …
Read More

Half Diamond Pattern in C using Alphabets

In this tutorial, we will learn and code the half diamond alphabet patterns in C programming language. However, in this tutorial, we will create a …
Read More

Half Pyramid of Alphabets in C

In this tutorial, we will learn and code alphabet patterns in C programming language specifically the Half pyramid of alphabets in C programming. However, in …
Read More