I need to run a program that will have a similar output both on Linux and visual studio.
Linux's default width of the exponent field is 2 and visual studio's is 3.
So for a number 3.40282e+38 Linux leaves it as it is, but visual studio pads it with an additional 0, 3.40282e+038
Anyone know how to configure the output in visual studio to remove the zero? (or add a zero in Linux)