Polynomial addition | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 3

Polynomial addition

Could you please write polynomial addition using array in C I'm facing problem in implementation so please anyone there who can help me

16th Apr 2022, 7:00 AM
Sonu Kumar
1 Answer
+ 2
Polynomial addition is componentwise. If you represent polynomials as arrays of coefficients, then add all corresponding array fields individually: p[i] + q[i], for all i within the limits.
16th Apr 2022, 9:22 AM
Ani Jona 🕊
Ani Jona 🕊 - avatar