Initialization

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

View File

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