Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
7
Posts with Downvotes
2
Downvoting Members
6
4 Commented Posts
0 Endorsements
Ranked #44.3K
~399 People Reached
Favorite Tags

2 Posted Topics

Member Avatar for Member #395672

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; …

Member Avatar for Rashakil Fol
0
197
Member Avatar for MADHAN RISHE

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; …

Member Avatar for jephthah
0
202

The End.