Data Structures using C Language / Polynomial Addition and Subtraction Implementation using c program

Program
Output
Enter polynomial 1 :
Enter Number of terms: 3
Enter terms: 
4 4
3 2
2 0
Enter polynomial 2 :
Enter Number of terms: 3
Enter terms: 
5 3
9 1
1 0
polynomial 1 : 4*4 + 3*2 + 2*0
polynomial 2 : 5*3 + 9*1 + 1*0
polynomial 2 : 4*4 + 5*3 + 3*2  + 9*1 + 3*0



Home     Back