Initialization

This commit is contained in:
Kozar 2024-03-04 14:19:01 +01:00
parent 1f31eaaf18
commit 01738cdcfa

View File

@ -18,7 +18,7 @@ int main() {
length = count; length = count;
for (int i = length - 1; i > 0; i--) { for (int i = length - 1; i > 0; i--) {
result += coefs[0] * coefs[i]; result += coefs[0]^i * coefs[i];
} }
printf("Coefficients: "); printf("Coefficients: ");