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);