Node* insertrec(int data,Node* head,Node* temp,int pos,int count) { if(head==NULL) return head; if(pos==0) { Node *newnode=new Node(data);