typedef struct lista{struct lista *next;int data;}list;void insert(list *h);void del(list *h);int main(){int flag;list *head=(list *)malloc(sizeof(list));head->next=NULL;while(1){