#include<stdio.h> #include<stdlib.h> typedef struct node { int data; struct node* next; }NODE; NODE* Initnode() { NODE* head=(NODE*)malloc(sizeof(NODE)); head->data=0; head->next=NULL; return head; } void Insernode(int arr[],NODE* L,int a) { int i; NODE* b=L; for(i=0;i<a;i++) { ...