[Solved] Polynomial Addition using Linked List with C
Polynomial Addition using Linked List: Write a C program to add 2 polynomials. Use functions:polyappend —- to append a term to the polynomialpolyadd — to add 2 polynomialsdisplay — to display a polynomial. Refer to the function specifications for more details.The terms in…