- 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
1 Odpowiedź
+ 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.