- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 7
- Posts with Downvotes
- 2
- Downvoting Members
- 6
2 Posted Topics
polynomial multiplication and addition in the same prog. [CODE] #include<conio.h> #include<stdio.h> #include<stdlib.h> struct node { signed int coe; int pow; node *next; }*start1,*start2,*root,*add_res,*mul_res; void disp(node *cur) { while(cur!=NULL) { printf("%dx%d ",cur->coe,cur->pow); cur=cur->next; } } void ins(node **root,int c,int p) { node *temp=new node; node *cur=new node; cur=*root; temp->coe=c; temp->pow=p; temp->next=NULL; …
polynomial multiplication and addition in the same prog. [CODE] #include<conio.h> #include<stdio.h> #include<stdlib.h> struct node { signed int coe; int pow; node *next; }*start1,*start2,*root,*add_res,*mul_res; void disp(node *cur) { while(cur!=NULL) { printf("%dx%d ",cur->coe,cur->pow); cur=cur->next; } } void ins(node **root,int c,int p) { node *temp=new node; node *cur=new node; cur=*root; temp->coe=c; temp->pow=p; temp->next=NULL; …
The End.
boysmakesh