code–>
my code is giving incorrect output can you help me correct my code
Linkedlist insertion
@a_saurabh *incorrect
void insertathead(Node* &head,int d){
if(head==NULL){
head=new Node(d);
return;
}
Node* n=new Node(d);
n->next=head;
head=n;
return;
}
you forgot return statement in base case
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.