Initialization

This commit is contained in:
Kozar 2024-03-05 11:08:01 +01:00
parent 9a492ea9a4
commit 32c42e2558

View File

@ -22,6 +22,8 @@ int main() {
length = count;
result = coefs[0];
for (int i = 1; i < length; i ++) {
result = result * x + coefs[i];
}