#include<stdio.h>
#include<stdlib.h>
struct node{
    int data;
    struct node*next;
    *head=NULL,*tail;
}
void delete value(int val){
    if(head==NULL){
        printf("List is empty");
        return;
    }
    struct Node*temp=head;0..
    struct Node*prev
}