This commit is contained in:
Nataliia Kobryn 2025-10-16 21:16:13 +02:00
parent 903bd221b4
commit e907a4a371

View File

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