struct Node {
   int data;
   struct Node* next;
};
struct Node*head=malloc(sizeof(struct Node));
head->data=10;
head->next=malloc(sizeof(struct Node));
head->next->data=20;
head->next->next=Null;
printf("%d",head->next->data);
}