Initialization

This commit is contained in:
Kozar 2024-03-05 11:28:14 +01:00
parent 7b16b9b829
commit 018c286d3a

View File

@ -15,9 +15,11 @@ int main() {
printf("\n x input \n"); printf("\n x input \n");
break; break;
} }
coefs[count] = input; else {
coefs[count] = input - '0'; // Convert character to double
count++; count++;
} }
}
x = coefs[0]; x = coefs[0];
length = count; length = count;