Initialization

This commit is contained in:
Kozar 2024-03-05 11:42:55 +01:00
parent d36ee683ff
commit 37cee1e6f2

View File

@ -10,14 +10,9 @@ int main() {
int count = 0;
int length = 0;
double result = 0.0;
double ivrt = 0;
while (count < SIZE && scanf("%c", &input) == 1) {
ivrt = atof(input);
if (ivrt == 0.00){
printf("String \n");
}
coefs[count] = input;
coefs[count] = input - '0';
count++;
}