Add two Doubly linked list by R4R Team

Following is the function to add two doubly linked list:

void add(struct node *first1, struct node *first2)
{
printf("Sum of Both Linklost is");
while(first1!=NULL && first2!=NULL)
{
printf("%d",first1->data+first2->data);
}
}




Leave a Comment:
Search
Categories
R4R Team
R4Rin Top Tutorials are Core Java,Hibernate ,Spring,Sturts.The content on R4R.in website is done by expert team not only with the help of books but along with the strong professional knowledge in all context like coding,designing, marketing,etc!