Hi.

I've a number y = 0.62354642

When I try
QString("%1").arg(y)

It does not show on my screen the full 0.62354642.
Rather is shows the value of '1'.
My variables are declared as float. And I've been able to output variables values on my screen. But it is the first time I'm trying to see the values in float precision.
How do I see the results up to the exact decimal places?

Thanks.