Raksha1906 / DS-Algo

Repository For beginners for Hacktoberfest 2020 and 2021
4 stars 70 forks source link

C program of adding two polynomials #22

Closed yashmita closed 3 years ago

yashmita commented 3 years ago

It is a C program which adds two polynomials using a Linked List. For Example, INPUT: (5x^3 + 4x^2 + 2x^0) + (6x^4 - 2x^2 + 7x^0) OUTPUT: 6x^4 + 5x^3 + 2x^2 + 9x^0