Initialization

This commit is contained in:
Kozar 2024-03-04 16:57:29 +01:00
parent 03b16331e0
commit c3e03f53cc

View File

@ -21,12 +21,14 @@ int main() {
length = count;
for (int y = 0; y < length; y++ ){
if (isdigit(coefs[y]) == 0){
printf("Nepodarilo sa nacitat polynom na %d mieste.", y);
break;
int b = coefs[y]
if (isdigit(b) == 0){
printf("Nepodarilo sa nacitat polynom na %d mieste.", y);
break;
}
else{
continue;
continue;
}
}