This commit is contained in:
mr314ot 2025-10-16 12:57:19 +02:00
parent 15e6ed87dc
commit d311508a59

View File

@ -34,7 +34,6 @@ float pop_stack(struct stack *s) {
void print_stack(struct stack *s) {
for (int i = 0; i < s->size; i++) {
if (i > 0) printf(" ");
printf("%.2f ", s->values[i]);
}
printf("\n");