This commit is contained in:
Oleksandr Vyshniakov 2025-10-12 22:05:11 +02:00
parent 2de7ab735a
commit 05646a59ef

View File

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