C Program for Addition and Multiplication of Polynomial Using Arrays or Linked List
Polynomial addition, multiplication (8th degree polynomials) using arrays #include<math.h> #include<stdio.h> #include<conio.h> #define MAX 17 void init(int p[]); void read(int p[]); void print(int p[]); void add(int p1[],int p2[],int p3[]); void multiply(int p1[],int p2[],int p3[]); /*Polynomial is stored in an array, p[i] gives coefficient of x^i . a polynomial 3x^2 + 12x^4 will be represented as …
C Program for Addition and Multiplication of Polynomial Using Arrays or Linked List Read More »
