How do I cut off decimal places in C without rounding?
For example if the number is 4.48
it will just show 4.4
%.1f
rounds to 4.5
How do I cut off decimal places in C without rounding?
For example if the number is 4.48
it will just show 4.4
%.1f
rounds to 4.5