c float lepas trailing 0

double x = 4.300;
double e = 7.34200;
printf("%g \n %g", x, e);
// will print 4.3 and then 7.342
Embarrassed Eel