Answer:
Linked list is the list of elements. It is same like array. The elements in the linked list are stored as node. A node of linked list consist of two parts: Data and Address of Next Node. The linked list is the chain of nodes, where all nodes contains the address of the next node.
Step-by-step explanation:
We can make linked list with the following steps.
1. Create a node, that have two parts Data and Address
2. In data part we insert the data and in address part we insert the null value until new node created.
3. When we create the new node, we insert of that node in previously created node's address section.
This process continues until the nodes are created and added to the list.
Creation of Node
To complete this process we create a structure that has two fields. One is integer type data and other is pointer type.
struct node{
int data;
int * next;
}