Doubly Linked List

void insert_at_head(node *head., int data){
if(head==NULL){
head=new node(data);
return;
}
node *n=new node(data);
n->next=head;
n->prev=NULL;

head=n;

}
check this inserttion function and point out my mistake .where i am wrong?

hello @mohitsharmakosi2001

after this line add.
head->prev=n;

I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.

On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.