I want to print a float value which has 2 integer digits and 6 decimal digits after the comma. If I just use printf(\"%f\", myFloat) I\'m getting a truncated va
printf(\"%f\", myFloat)
printf("%.f", myFloat) //where - digit after comma
http://www.cplusplus.com/reference/clibrary/cstdio/printf/