This commit is contained in:
Matej Hajduk 2025-10-15 18:02:24 +02:00
parent 5414e2be84
commit db81c29100

View File

@ -50,7 +50,7 @@ int main(){
if (*endptr == '\0') { // je cislo
if(mystack.size >= SIZE) {
printf("full stack\n");
return 1;
return 0;
}
push(&mystack,num);
}