This commit is contained in:
Matej Hajduk 2025-10-15 17:33:48 +02:00
parent 2cbf78d525
commit 95d74f9947

View File

@ -67,7 +67,7 @@ int main(){
fprintf(stderr, "nule pr ideleni \n");
return 1;
}
result = a / b;
result = b / a;
break;
}
push(&mystack,result);
@ -78,6 +78,6 @@ int main(){
}
print (&mystack);
}
print(&mystack);
return 0;
}