Description
Create two linked list for the following polynomial equations
1. 3×12 + 8×8
– 22×4
+3x -7
2. 7×14 -10×9
– 8×8 +6×5
-9x
Perform the following operations using a menu driven program
1. Create linked list for the polynomials
2. Polynomial addition by passing two polynomial lists as arguments and return
the resultant polynomial list
3. Polynomial multiplication by passing two polynomial lists as arguments and
return the resultant polynomial list
4. Display the given polynomials and the resultant polynomial.
Note:
3 files need to be maintained.
1. Structure and function definitions
2. Function prototypes
3. Application